Mercurial > emacs
diff src/alloc.c @ 17831:9238a2254a23
(BYTES_USED): Put # at the beginning of line.
(emacs_blocked_malloc): Likewise.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Fri, 16 May 1997 00:43:18 +0000 |
| parents | ceb61585d2fc |
| children | 7a38a8767242 |
line wrap: on
line diff
--- a/src/alloc.c Fri May 16 00:43:15 1997 +0000 +++ b/src/alloc.c Fri May 16 00:43:18 1997 +0000 @@ -214,9 +214,9 @@ } #ifdef DOUG_LEA_MALLOC - #define BYTES_USED (mallinfo ().arena) +# define BYTES_USED (mallinfo ().arena) #else - #define BYTES_USED _bytes_used +# define BYTES_USED _bytes_used #endif /* Called if malloc returns zero */ @@ -374,11 +374,11 @@ BLOCK_INPUT; __malloc_hook = old_malloc_hook; - #ifdef DOUG_LEA_MALLOC +#ifdef DOUG_LEA_MALLOC mallopt (M_TOP_PAD, malloc_hysteresis * 4096); - #else +#else __malloc_extra_blocks = malloc_hysteresis; - #endif +#endif value = (void *) malloc (size); __malloc_hook = emacs_blocked_malloc; UNBLOCK_INPUT;
