Go to file
Jason Evans 7372b15a31 Reduce cpp conditional logic complexity.
Convert configuration-related cpp conditional logic to use static
constant variables, e.g.:

  #ifdef JEMALLOC_DEBUG
    [...]
  #endif

becomes:

  if (config_debug) {
    [...]
  }

The advantage is clearer, more concise code.  The main disadvantage is
that data structures no longer have conditionally defined fields, so
they pay the cost of all fields regardless of whether they are used.  In
practice, this is only a minor concern; config_stats will go away in an
upcoming change, and config_prof is the only other major feature that
depends on more than a few special-purpose fields.
2012-02-10 20:22:09 -08:00
bin Refactor SO and REV make variables. 2011-11-01 22:27:41 -07:00
doc Document swap.fds mallctl as read-write. 2011-08-12 11:40:55 -07:00
include/jemalloc Reduce cpp conditional logic complexity. 2012-02-10 20:22:09 -08:00
src Reduce cpp conditional logic complexity. 2012-02-10 20:22:09 -08:00
test Fix rallocm() test to support >4KiB pages. 2011-11-05 21:06:55 -07:00
.gitignore add autogenerated jemalloc.sh wrapper script 2011-11-01 22:09:46 -07:00
autogen.sh Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00
ChangeLog Update ChangeLog for 2.2.5. 2011-11-14 17:12:45 -08:00
config.guess Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00
config.stamp.in Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00
config.sub Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00
configure.ac Reduce cpp conditional logic complexity. 2012-02-10 20:22:09 -08:00
COPYING Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00
INSTALL Add the --with-private-namespace option. 2011-07-30 16:40:52 -07:00
install-sh Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00
Makefile.in Refactor SO and REV make variables. 2011-11-01 22:27:41 -07:00
README Move repo contents in jemalloc/ to top level. 2011-03-31 20:36:17 -07:00

jemalloc is a general-purpose scalable concurrent malloc(3) implementation.
This distribution is a stand-alone "portable" implementation that currently
targets Linux and Apple OS X.  jemalloc is included as the default allocator in
the FreeBSD and NetBSD operating systems, and it is used by the Mozilla Firefox
web browser on Microsoft Windows-related platforms.  Depending on your needs,
one of the other divergent versions may suit your needs better than this
distribution.

The COPYING file contains copyright and licensing information.

The INSTALL file contains information on how to configure, build, and install
jemalloc.

The ChangeLog file contains a brief summary of changes for each release.

URL: http://www.canonware.com/jemalloc/