- Apr 23, 2012
-
-
Jason Evans authored
Fix jemalloc.sh code generation by adding @sorev@ and using it instead of @SOREV@ (which contains Makefile-specific variables).
-
Mike Hommey authored
MSVC doesn't support C99, and as such doesn't support designated initialization of structs and unions. As there is never a mix of indexed and named nodes, it is pretty straightforward to use a different type for each.
-
Jason Evans authored
-
Jason Evans authored
Fix a potential deadlock that could occur during interval- and growth-triggered heap profile dumps. Fix an off-by-one heap profile statistics bug that could be observed in interval- and growth-triggered heap profiles. Fix heap profile dump filename sequence numbers (regression during conversion to malloc_snprintf()).
-
- Apr 22, 2012
-
-
Mike Hommey authored
-
Mike Hommey authored
Since we're now including jemalloc_internal.h, all the required headers are already pulled. This will avoid having to fiddle with headers that can or can't be used with MSVC. Also, now that we use malloc_printf, we can use util.h's definition of assert instead of assert.h's.
-
Mike Hommey authored
-
Mike Hommey authored
Commit 4eeb52f0 removed vsnprintf validation, but left a now unused va_copy. It so happens that MSVC doesn't support va_copy.
-
Mike Hommey authored
-
Jason Evans authored
Remove mmap_unaligned, which was used to heuristically decide whether to optimistically call mmap() in such a way that could reduce the total number of system calls. If I remember correctly, the intention of mmap_unaligned was to avoid always executing the slow path in the presence of ASLR. However, that reasoning seems to have been based on a flawed understanding of how ASLR actually works. Although ASLR apparently causes mmap() to ignore address requests, it does not cause total placement randomness, so there is a reasonable expectation that iterative mmap() calls will start returning chunk-aligned mappings once the first chunk has been properly aligned.
-
Jason Evans authored
Fix chunk_alloc_dss() to zero memory when requested. Fix chunk_dealloc() to avoid chunk_dealloc_mmap() for dss-allocated memory. Fix huge_palloc() to always junk fill when requested. Improve chunk_recycle() to report that memory is zeroed as a side effect of pages_purge().
-
- Apr 21, 2012
-
-
Jason Evans authored
Fix a memory corruption bug in chunk_alloc_dss() that was due to claiming newly allocated memory is zeroed. Reverse order of preference between mmap() and sbrk() to prefer mmap(). Clean up management of 'zero' parameter in chunk_alloc*().
-
Jason Evans authored
Put CONF_HANDLE_*() keys in quotes, so that they aren't mangled when --with-private-namespace is used.
-
- Apr 20, 2012
-
-
Jason Evans authored
-
Jason Evans authored
-
Jason Evans authored
Don't mangle pthread_create(); it's an exported symbol when defined.
-
Jason Evans authored
-
- Apr 19, 2012
-
-
Mike Hommey authored
Bookkeeping an extra argument that actually only stores a function pointer for a function we already have is not very useful.
-
Mike Hommey authored
Using static memory when malloc_tsd_malloc fails means all threads share the same wrapper and thus the same wrapped value. This defeats the purpose of TSD.
-
Mike Hommey authored
Not setting the initialized member leads to randomly calling the cleanup function in cases it shouldn't be called (and isn't called in other implementations).
-
Jason Evans authored
Make special FreeBSD libc/libthr function overrides for _malloc_prefork(), _malloc_postfork(), and _malloc_thread_cleanup() visible.
-
Mike Hommey authored
These flags take unsigned values, but they were fed with signed values taken with va_arg, and that led to sign extension in cases where the corresponding value has the most significant bit set.
-
Mike Hommey authored
This will be used to implement the feature on mingw, which doesn't have madvise.
-
- Apr 18, 2012
-
-
Mike Hommey authored
-
Mike Hommey authored
-
Mike Hommey authored
This allows for different patterns for file names: - lib.so.version for e.g. Linux - lib.version.dylib for OSX (which is much more common than lib.dylib.version) - lib.dll for Windows (no version at all).
-
Jason Evans authored
Clean up a few config-related conditionals to avoid unnecessary dependencies on prof symbols. Use cassert() rather than assert() everywhere that it's appropriate.
-
Jason Evans authored
Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB). Change the "opt.prof_accum" default from true to false. Add the "opt.prof_final" mallctl, so that "opt.prof_prefix" need not be abused to disable final profile dumping.
-
Jason Evans authored
-
- Apr 17, 2012
-
-
Jason Evans authored
Add atomic(9) implementations of atomic operations. These are used on FreeBSD for non-x86 architectures.
-
Mike Hommey authored
-
Mike Hommey authored
This will make things easier for MSVC support.
-
Mike Hommey authored
This makes hacking on Makefile easier.
-
Mike Hommey authored
This avoids fork/exec()ing in loops, as echo is a builtin, and makes size_classes.sh much faster (from > 10s to < 0.2s on mingw on my machine).
-
Mike Hommey authored
-
Mike Hommey authored
This will allow linking for win32 without pthreads more easily
-
Mike Hommey authored
It is a linker flag, so it doesn't make sense in CFLAGS, and it's the default when invoking the linker for shared libraries.
-
Jason Evans authored
Start preparing ChangeLog for 3.0.0 release. Additional fixes and changes are yet to come, so this is not a complete ChangeLog.
-
Jason Evans authored
Add the --disable-munmap option, remove the configure test that attempted to detect the VM allocation quirk known to exist on Linux x86[_64], and make --disable-munmap implicit on Linux.
-
- Apr 16, 2012
-
-
Jason Evans authored
-