summaryrefslogtreecommitdiffstats
path: root/test/integration/overflow.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove extraneous parens around return arguments.Jason Evans2017-01-211-2/+2
| | | | This resolves #540.
* Update brace style.Jason Evans2017-01-211-4/+2
| | | | | | | Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537.
* Remove leading blank lines from function bodies.Jason Evans2017-01-131-1/+0
| | | | This resolves #535.
* Uniformly cast mallctl[bymib]() oldp/newp arguments to (void *).Jason Evans2016-10-281-4/+4
| | | | | This avoids warnings in some cases, and is otherwise generally good hygiene.
* Rename huge to large.Jason Evans2016-06-061-4/+4
|
* Fix size class overflow handling when profiling is enabled.Jason Evans2015-06-241-0/+49
Fix size class overflow handling for malloc(), posix_memalign(), memalign(), calloc(), and realloc() when profiling is enabled. Remove an assertion that erroneously caused arena_sdalloc() to fail when profiling was enabled. This resolves #232.