diff options
| author | Paul Eggert | 2011-09-29 20:25:46 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-29 20:25:46 -0700 |
| commit | cb993c584c8ef91f5352ec9aa97d26fd76cfd643 (patch) | |
| tree | 923b3bcb5b390d9b3d5f34e941b29f4d80f13477 /src/charset.c | |
| parent | 5f91c1e5303017cad6ed7d7d903440b3328fe7ff (diff) | |
| download | emacs-cb993c584c8ef91f5352ec9aa97d26fd76cfd643.tar.gz emacs-cb993c584c8ef91f5352ec9aa97d26fd76cfd643.zip | |
Port --enable-checking=all to Fedora 14 x86.
* alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
Move to lisp.h.
(xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
(overrun_check_realloc, overrun_check_free):
Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
That way, xmalloc returns a properly-aligned pointer even if
XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
* charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
into account when calculating the initial malloc maximum.
* lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
Move here from alloc.c, so that charset.c can use it too.
Properly align; the old code wasn't right for common 32-bit hosts
when configured with --enable-checking=all.
(XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
(XMALLOC_OVERRUN_SIZE_SIZE): New macros.
Diffstat (limited to 'src/charset.c')
| -rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index 6967b9df611..1209ac6b68d 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -2337,7 +2337,7 @@ syms_of_charset (void) | |||
| 2337 | mmap for larger allocations, and these don't work well across dumped | 2337 | mmap for larger allocations, and these don't work well across dumped |
| 2338 | systems. */ | 2338 | systems. */ |
| 2339 | enum { | 2339 | enum { |
| 2340 | initial_malloc_max = (1 << 16) - 1, | 2340 | initial_malloc_max = (1 << 16) - 1 - XMALLOC_OVERRUN_CHECK_OVERHEAD, |
| 2341 | charset_table_size_init = initial_malloc_max / sizeof (struct charset) | 2341 | charset_table_size_init = initial_malloc_max / sizeof (struct charset) |
| 2342 | }; | 2342 | }; |
| 2343 | 2343 | ||