Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use MALLOC_CONF rather than malloc_conf for tests. | Jason Evans | 2017-02-23 | 1 | -5/+0 |
| | | | | | | | | | malloc_conf does not reliably work with MSVC, which complains of "inconsistent dll linkage", i.e. its inability to support the application overriding malloc_conf when dynamically linking/loading. Work around this limitation by adding test harness support for per test shell script sourcing, and converting all tests to use MALLOC_CONF instead of malloc_conf. | ||||
* | Replace tabs following #define with spaces. | Jason Evans | 2017-01-21 | 1 | -1/+1 |
| | | | | This resolves #564. | ||||
* | Remove extraneous parens around return arguments. | Jason Evans | 2017-01-21 | 1 | -2/+2 |
| | | | | This resolves #540. | ||||
* | Update brace style. | Jason Evans | 2017-01-21 | 1 | -8/+4 |
| | | | | | | | 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 Evans | 2017-01-13 | 1 | -3/+0 |
| | | | | This resolves #535. | ||||
* | Remove all vestiges of chunks. | Jason Evans | 2016-10-12 | 1 | -1/+1 |
| | | | | | | | | Remove mallctls: - opt.lg_chunk - stats.cactive This resolves #464. | ||||
* | Rename huge to large. | Jason Evans | 2016-06-06 | 1 | -2/+2 |
| | |||||
* | Use huge size class infrastructure for large size classes. | Jason Evans | 2016-06-06 | 1 | -10/+1 |
| | |||||
* | Remove redzone support. | Jason Evans | 2016-05-13 | 1 | -1/+1 |
| | | | | This resolves #369. | ||||
* | Remove quarantine support. | Jason Evans | 2016-05-13 | 1 | -1/+1 |
| | |||||
* | Clean up char vs. uint8_t in junk filling code. | Jason Evans | 2016-04-11 | 1 | -7/+9 |
| | | | | Consistently use uint8_t rather than char for junk filling code. | ||||
* | Rename arena_maxclass to large_maxclass. | Jason Evans | 2015-09-12 | 1 | -2/+2 |
| | | | | | arena_maxclass is no longer an appropriate name, because arenas also manage huge allocations. | ||||
* | Fix message formatting errors uncovered by p_test_fail() refactoring. | Jason Evans | 2014-03-30 | 1 | -1/+1 |
| | |||||
* | Add junk/zero filling unit tests, and fix discovered bugs. | Jason Evans | 2014-01-08 | 1 | -0/+78 |
Fix growing large reallocation to junk fill new space. Fix huge deallocation to junk fill when munmap is disabled. |