| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make the 'C' and 'c' malloc options consistent with other options; 'C' | Jason Evans | 2006-01-23 | 1 | -2/+2 |
| * | In arena_chunk_reg_alloc(), try to avoid touching the last page in the | Jason Evans | 2006-01-23 | 1 | -7/+24 |
| * | Use uintptr_t rather than size_t when casting pointers to integers. Also, | Jason Evans | 2006-01-20 | 1 | -44/+45 |
| * | Revert addtion of assertions in revision 1.99. These assertions cause | Jason Evans | 2006-01-19 | 1 | -7/+0 |
| * | Add assertions that detect some forms of region separator corruption. | Jason Evans | 2006-01-19 | 1 | -0/+7 |
| * | Remove loops in arena_coalesce(). They are no longer necessary, now that | Jason Evans | 2006-01-19 | 1 | -4/+5 |
| * | Make all internal variables and functions static. | Jason Evans | 2006-01-19 | 1 | -12/+15 |
| * | Return NULL if there is an OOM error during initialization, rather than | Jason Evans | 2006-01-19 | 1 | -35/+50 |
| * | Add a separate simple internal base allocator and remove base_arena, so that | Jason Evans | 2006-01-16 | 1 | -151/+175 |
| * | Define NO_TLS on ia64. The dynamic TLS implementation on ia64 is | Marcel Moolenaar | 2006-01-16 | 1 | -0/+1 |
| * | Replace malloc(), calloc(), posix_memalign(), realloc(), and free() with | Jason Evans | 2006-01-13 | 1 | -927/+4481 |
| * | Fix a bitwise logic error in posix_memalign(). | Jason Evans | 2006-01-12 | 1 | -2/+2 |
| * | In preparation for a new malloc implementation: | Jason Evans | 2006-01-12 | 1 | -0/+64 |
| * | Remove the check about whether MALLOC_EXTRA_SANITY is defined, | Xin LI | 2005-02-27 | 1 | -2/+0 |
| * | Consistently use __inline instead of __inline__ as the former is an empty macro | Stefan Farfeleder | 2004-07-04 | 1 | -3/+3 |
| * | Define malloc_pageshift and malloc_minsize for arm. | Olivier Houchard | 2004-05-14 | 1 | -0/+4 |
| * | Rearrange (centralize) initialization of mallocs internals to always be | Poul-Henning Kamp | 2004-03-07 | 1 | -19/+13 |
| * | Remove the triplicity in the public functions by vectoring them all | Poul-Henning Kamp | 2004-02-21 | 1 | -70/+49 |
| * | Move the check for sensitive processes to the point where the exception | Poul-Henning Kamp | 2004-02-21 | 1 | -14/+7 |
| * | Do not adjust to the pagesize at runtime. Besides for the one-time | Marcel Moolenaar | 2003-11-28 | 1 | -8/+2 |
| * | Externalize malloc's spinlock so that a thread library can take | Daniel Eischen | 2003-11-04 | 1 | -0/+1 |
| * | Remove incomplete support for running FreeBSD userland on old NetBSD kernels | Tim J. Robbins | 2003-10-29 | 1 | -3/+1 |
| * | Consistently cast to (u_char *) when filling with junk. | Poul-Henning Kamp | 2003-10-25 | 1 | -3/+3 |
| * | Style changes. Inching closer to convergence with OpenBSD. | Poul-Henning Kamp | 2003-10-25 | 1 | -61/+60 |
| * | More style fixes to improve diffability with OpenBSD. | Poul-Henning Kamp | 2003-09-27 | 1 | -46/+54 |
| * | Style changes to improve diffability against OpenBSD version. | Poul-Henning Kamp | 2003-09-27 | 1 | -91/+91 |
| * | Minor constification. | Poul-Henning Kamp | 2003-07-29 | 1 | -2/+2 |
| * | Clarify the code a bit. | Poul-Henning Kamp | 2003-06-01 | 1 | -1/+2 |
| * | Tell malloc.c that AMD64 uses the same pagesize as i386. | Peter Wemm | 2003-04-30 | 1 | -0/+4 |
| * | Catch some cases where asking for ridiculously large allocations could | Poul-Henning Kamp | 2003-01-30 | 1 | -0/+4 |
| * | For "sensitive" processes, we always set the 'A' flag which causes abort() | Poul-Henning Kamp | 2003-01-23 | 1 | -0/+7 |
| * | s/EDOFUS/EDOOFUS/ | Poul-Henning Kamp | 2002-08-21 | 1 | -3/+3 |
| * | Make sure we set errno sensibly in case of failure. | Poul-Henning Kamp | 2002-08-09 | 1 | -0/+7 |
| * | Const poison. | Poul-Henning Kamp | 2002-05-30 | 1 | -3/+5 |
| * | Avoid casting a different sized integer to a pointer on LP64 systems. | Peter Wemm | 2002-05-10 | 1 | -1/+1 |
| * | Constify _malloc_options. | Poul-Henning Kamp | 2002-04-24 | 1 | -1/+1 |
| * | Do not use __progname directly (except in [gs]etprogname(3)). | Mark Murray | 2002-03-29 | 1 | -4/+2 |
| * | Fix the style of the SCM ID's. | David E. O'Brien | 2002-03-22 | 1 | -2/+3 |
| * | Remove __P() usage. | David E. O'Brien | 2002-03-21 | 1 | -1/+1 |
| * | Remove 'register' keyword. | David E. O'Brien | 2002-03-21 | 1 | -1/+1 |
| * | Add ifdefs for sparc64. | Jake Burkholder | 2002-02-23 | 1 | -0/+4 |
| * | If 'VX' is given, realloc(foo,0) will bail, it shouldn't. | Poul-Henning Kamp | 2001-11-17 | 1 | -2/+5 |
| * | Correctly call THREAD_UNLOCK() if the recursive call trap is sprung. | Poul-Henning Kamp | 2001-11-16 | 1 | -0/+2 |
| * | phkmalloc->evilchecks++; | Poul-Henning Kamp | 2001-11-02 | 1 | -3/+13 |
| * | Port to ia64, taking into account the fact that pagesizes may be variable. | Doug Rabson | 2001-09-07 | 1 | -0/+11 |
| * | Fixed style bugs (dot `.' at the end of error and warning messages). | Ruslan Ermilov | 2001-08-10 | 1 | -22/+22 |
| * | Remove a sizeof(void *) == sizeof(int) assumption. | Poul-Henning Kamp | 2001-02-04 | 1 | -7/+7 |
| * | Remove _THREAD_SAFE and make libc thread-safe by default by | Daniel Eischen | 2001-01-24 | 1 | -0/+2 |
| * | Add `_PATH_DEVZERO'. | David E. O'Brien | 2000-12-09 | 1 | -1/+2 |
| * | Make it possible to override the function which writes messages to | Poul-Henning Kamp | 2000-11-26 | 1 | -12/+18 |