diff options
author | marcus <marcus> | 2004-10-25 13:32:32 +0000 |
---|---|---|
committer | marcus <marcus> | 2004-10-25 13:32:32 +0000 |
commit | 350045c490d8156b7bb198ee02a8ece99a72968c (patch) | |
tree | b5c37a1657cce01340d4bedac5dc7768af59bec2 | |
parent | b68698c6210311c98f39776b74548541b324a24c (diff) |
2004-10-20 Marcus Brinkmann <marcus@gnu.org>
* malloc-wrap.c: Do not include zalloc.h here.
(USE_MALLOC_LOCK): Define.
-rw-r--r-- | physmem/ChangeLog | 5 | ||||
-rw-r--r-- | physmem/malloc-wrap.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/physmem/ChangeLog b/physmem/ChangeLog index 42bf2f2..892ab09 100644 --- a/physmem/ChangeLog +++ b/physmem/ChangeLog @@ -1,3 +1,8 @@ +2004-10-20 Marcus Brinkmann <marcus@gnu.org> + + * malloc-wrap.c: Do not include zalloc.h here. + (USE_MALLOC_LOCK): Define. + 2004-07-16 Bas Wijnen <b.wijnen@phys.rug.nl> * physmem.c (physmem_server): Added missing parameter. diff --git a/physmem/malloc-wrap.c b/physmem/malloc-wrap.c index 9371b2d..31c66ea 100644 --- a/physmem/malloc-wrap.c +++ b/physmem/malloc-wrap.c @@ -29,8 +29,6 @@ #include <l4.h> -#include "zalloc.h" - #define __STD_C 1 #define LACKS_UNISTD_H #define LACKS_SYS_PARAM_H @@ -47,6 +45,7 @@ #define malloc_getpagesize l4_min_page_size () #define MMAP_AS_MORECORE_SIZE (16 * malloc_getpagesize) #define DEFAULT_MMAP_THRESHOLD (4 * malloc_getpagesize) +#define USE_MALLOC_LOCK 1 /* Suppress debug output in mstats(). */ #define fprintf(...) |