aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorStefan Monnier2005-02-18 18:16:09 +0000
committerStefan Monnier2005-02-18 18:16:09 +0000
commitf501ccb45f05985eb20739169fa7b6cd66d30853 (patch)
tree9378900b32e7357aac5fdd8601bae6eaf0317a29 /src/alloc.c
parent3a51abf1df61bfee39f8293c910028c2c86af16a (diff)
downloademacs-f501ccb45f05985eb20739169fa7b6cd66d30853.tar.gz
emacs-f501ccb45f05985eb20739169fa7b6cd66d30853.zip
(BLOCK_BYTES): Harmless typo.
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 34b6068d847..5c8bdf0f657 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
@@ -890,12 +890,13 @@ lisp_free (block)
890 On glibc-2.3.2, malloc never tries to align, so a padding of 0 is best. 890 On glibc-2.3.2, malloc never tries to align, so a padding of 0 is best.
891 posix_memalign on the other hand would ideally prefer a value of 4 891 posix_memalign on the other hand would ideally prefer a value of 4
892 because otherwise, there's 1020 bytes wasted between each ablocks. 892 because otherwise, there's 1020 bytes wasted between each ablocks.
893 But testing shows that those 1020 will most of the time be efficiently 893 In Emacs, testing shows that those 1020 can most of the time be
894 used by malloc to place other objects, so a value of 0 is still preferable 894 efficiently used by malloc to place other objects, so a value of 0 can
895 unless you have a lot of cons&floats and virtually nothing else. */ 895 still preferable unless you have a lot of aligned blocks and virtually
896 nothing else. */
896#define BLOCK_PADDING 0 897#define BLOCK_PADDING 0
897#define BLOCK_BYTES \ 898#define BLOCK_BYTES \
898 (BLOCK_ALIGN - sizeof (struct aligned_block *) - BLOCK_PADDING) 899 (BLOCK_ALIGN - sizeof (struct ablock *) - BLOCK_PADDING)
899 900
900/* Internal data structures and constants. */ 901/* Internal data structures and constants. */
901 902