| Commit message (Expand) | Author | Age | Files | Lines |
* | Refactor huge allocation to be managed by arenas. | Jason Evans | 2014-05-16 | 1 | -2/+2 |
|
|
* | Add support for user-specified chunk allocators/deallocators. | aravind | 2014-05-12 | 1 | -1/+1 |
|
|
* | Fix coding sytle nits. | Jason Evans | 2014-05-01 | 1 | -4/+4 |
|
|
* | Simplify backtracing. | Jason Evans | 2014-04-23 | 1 | -53/+27 |
|
|
* | Optimize Valgrind integration. | Jason Evans | 2014-04-15 | 1 | -28/+47 |
|
|
* | Remove the "opt.valgrind" mallctl. | Jason Evans | 2014-04-15 | 1 | -18/+17 |
|
|
* | Remove the *allocm() API, which is superceded by the *allocx() API. | Jason Evans | 2014-04-15 | 1 | -85/+0 |
|
|
* | Remove support for non-prof-promote heap profiling metadata. | Jason Evans | 2014-04-11 | 1 | -8/+8 |
|
|
* | Don't dereference chunk->arena in free() hot path | Ben Maurer | 2014-04-05 | 1 | -1/+1 |
|
|
* | Use arena dss prec instead of default for huge allocs. | Max Wang | 2014-03-28 | 1 | -1/+1 |
|
|
* | Fix unused variable warnings. | Jason Evans | 2014-01-21 | 1 | -4/+2 |
|
|
* | Extract profiling code from [re]allocation functions. | Jason Evans | 2014-01-12 | 1 | -354/+449 |
|
|
* | Fix an uninitialized variable read in xallocx(). | Jason Evans | 2013-12-20 | 1 | -0/+3 |
|
|
* | Optimize arena_prof_ctx_set(). | Jason Evans | 2013-12-16 | 1 | -43/+58 |
|
|
* | Implement the *allocx() API. | Jason Evans | 2013-12-13 | 1 | -162/+294 |
|
|
* | Silence some unused variable warnings. | Jason Evans | 2013-12-10 | 1 | -4/+4 |
|
|
* | Remove unused variable. | Jason Evans | 2013-12-02 | 1 | -1/+0 |
|
|
* | Clean up malloc_ncpus(). | Jason Evans | 2013-11-30 | 1 | -8/+1 |
|
|
* | Fix ALLOCM_ARENA(a) handling in rallocm(). | Jason Evans | 2013-11-26 | 1 | -1/+1 |
|
|
* | Delay pthread_atfork registering. | Leonard Crestez | 2013-10-24 | 1 | -12/+18 |
|
|
* | Add a missing mutex unlock in malloc_init_hard() error path. | Jason Evans | 2013-10-21 | 1 | -1/+3 |
|
|
* | Avoid (x < 0) comparison for unsigned x. | Jason Evans | 2013-10-21 | 1 | -2/+3 |
|
|
* | Prefer not_reached() over assert(false) where appropriate. | Jason Evans | 2013-10-21 | 1 | -2/+1 |
|
|
* | Fix inlining warning. | Jason Evans | 2013-10-20 | 1 | -3/+3 |
|
|
* | malloc_conf_init: revert errno value when readlink(2) fail. | Alexandre Perrin | 2013-10-13 | 1 | -14/+14 |
|
|
* | Fix a prof-related locking order bug. | Jason Evans | 2013-02-06 | 1 | -3/+3 |
|
|
* | Fix potential TLS-related memory corruption. | Jason Evans | 2013-01-31 | 1 | -2/+25 |
|
|
* | Revert opt_abort and opt_junk refactoring. | Jason Evans | 2013-01-23 | 1 | -2/+14 |
|
|
* | Use config_* instead of JEMALLOC_*. | Jason Evans | 2013-01-22 | 1 | -11/+2 |
|
|
* | Add and use JEMALLOC_ALWAYS_INLINE. | Jason Evans | 2013-01-22 | 1 | -3/+3 |
|
|
* | Don't mangle errno with free(3) if utrace(2) fails | Garrett Cooper | 2012-12-24 | 1 | -0/+2 |
|
|
* | Add clipping support to lg_chunk option processing. | Jason Evans | 2012-12-23 | 1 | -19/+23 |
|
|
* | Add arena-specific and selective dss allocation. | Jason Evans | 2012-10-13 | 1 | -31/+99 |
|
|
* | Make malloc_usable_size() implementation consistent with prototype. | Jason Evans | 2012-10-09 | 1 | -1/+1 |
|
|
* | Fix fork(2)-related mutex acquisition order. | Jason Evans | 2012-10-09 | 1 | -3/+3 |
|
|
* | Fix fork(2)-related deadlocks. | Jason Evans | 2012-10-09 | 1 | -3/+30 |
|
|
* | If sysconf() fails, the number of CPUs is reported as UINT_MAX, not 1 as it s... | Corey Richardson | 2012-10-08 | 1 | -3/+4 |
|
|
* | Remove const from __*_hook variable declarations. | Jason Evans | 2012-05-23 | 1 | -5/+4 |
|
|
* | Disable tcache by default if running inside Valgrind. | Jason Evans | 2012-05-16 | 1 | -0/+2 |
|
|
* | Auto-detect whether running inside Valgrind. | Jason Evans | 2012-05-15 | 1 | -14/+15 |
|
|
* | Return early in _malloc_{pre,post}fork() if uninitialized. | Jason Evans | 2012-05-12 | 1 | -0/+14 |
|
|
* | Add support for MSVC | Mike Hommey | 2012-05-01 | 1 | -2/+9 |
|
|
* | Replace JEMALLOC_ATTR with various different macros when it makes sense | Mike Hommey | 2012-05-01 | 1 | -44/+9 |
|
|
* | Use Get/SetLastError on Win32 | Mike Hommey | 2012-04-30 | 1 | -9/+9 |
|
|
* | Fix a PROF_ALLOC_PREP() error path. | Jason Evans | 2012-04-25 | 1 | -2/+4 |
|
|
* | Silence compiler warnings. | Jason Evans | 2012-04-23 | 1 | -3/+3 |
|
|
* | Add support for Mingw | Mike Hommey | 2012-04-22 | 1 | -5/+27 |
|
|
* | Remove mmap_unaligned. | Jason Evans | 2012-04-22 | 1 | -6/+1 |
|
|
* | Put CONF_HANDLE_*() keys in quotes. | Jason Evans | 2012-04-21 | 1 | -28/+29 |
|
|
* | Make special FreeBSD function overrides visible. | Jason Evans | 2012-04-19 | 1 | -0/+2 |
|
|