summaryrefslogtreecommitdiffstats
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement aligned_alloc().Jason Evans2012-03-131-3/+3
| | | | | | | | Implement aligned_alloc(), which was added in the C11 standard. The function is weakly specified to the point that a minimally compliant implementation would be painful to use (size must be an integral multiple of alignment!), which in practice makes posix_memalign() a safer choice.
* Implement malloc_vsnprintf().Jason Evans2012-03-081-1/+1
| | | | | | | | | | | | Implement malloc_vsnprintf() (a subset of vsnprintf(3)) as well as several other printing functions based on it, so that formatted printing can be relied upon without concern for inducing a dependency on floating point runtime support. Replace malloc_write() calls with malloc_*printf() where doing so simplifies the code. Add name mangling for library-private symbols in the data and BSS sections. Adjust CONF_HANDLE_*() macros in malloc_conf_init() to expose all opt_* variable use to cpp so that proper mangling occurs.
* Add the --disable-experimental option.Jason Evans2012-03-031-3/+5
|
* Add fine-grained build/install targets.Jason Evans2012-03-031-9/+18
|
* Remove the swap feature.Jason Evans2012-02-131-5/+5
| | | | | Remove the swap feature, which enabled per application swap files. In practice this feature has not proven itself useful to users.
* Refactor SO and REV make variables.Jason Evans2011-11-021-3/+2
| | | | | | Refactor the SO and REV such that they are set via autoconf variables, @so@ and @rev@. These variables are both needed by the jemalloc.sh script, so this unifies their definitions.
* add autogenerated jemalloc.sh wrapper scriptAntony Dovgal2011-11-021-1/+1
|
* Makefile.in - test/allocated requires pthreadNathan McSween2011-05-111-2/+2
|
* Move repo contents in jemalloc/ to top level.Jason Evans2011-04-011-0/+259