aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 49fc69e7058..093919fee3d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1,6 +1,6 @@
1/* Storage allocation and gc for GNU Emacs Lisp interpreter. 1/* Storage allocation and gc for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1988, 1993, 1994, 1995, 1997, 1998, 1999, 2 Copyright (C) 1985, 1986, 1988, 1993, 1994, 1995, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. 3 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -891,12 +891,13 @@ lisp_free (block)
891 On glibc-2.3.2, malloc never tries to align, so a padding of 0 is best. 891 On glibc-2.3.2, malloc never tries to align, so a padding of 0 is best.
892 posix_memalign on the other hand would ideally prefer a value of 4 892 posix_memalign on the other hand would ideally prefer a value of 4
893 because otherwise, there's 1020 bytes wasted between each ablocks. 893 because otherwise, there's 1020 bytes wasted between each ablocks.
894 But testing shows that those 1020 will most of the time be efficiently 894 In Emacs, testing shows that those 1020 can most of the time be
895 used by malloc to place other objects, so a value of 0 is still preferable 895 efficiently used by malloc to place other objects, so a value of 0 can
896 unless you have a lot of cons&floats and virtually nothing else. */ 896 still preferable unless you have a lot of aligned blocks and virtually
897 nothing else. */
897#define BLOCK_PADDING 0 898#define BLOCK_PADDING 0
898#define BLOCK_BYTES \ 899#define BLOCK_BYTES \
899 (BLOCK_ALIGN - sizeof (struct aligned_block *) - BLOCK_PADDING) 900 (BLOCK_ALIGN - sizeof (struct ablock *) - BLOCK_PADDING)
900 901
901/* Internal data structures and constants. */ 902/* Internal data structures and constants. */
902 903