Mercurial > emacs
annotate src/gmalloc.c @ 112452:b8a360ee54f1
Merge: Remove HAVE_RAW_DECL_CHOWN etc. from config.h
| author | Paul Eggert <eggert@cs.ucla.edu> |
|---|---|
| date | Sun, 23 Jan 2011 20:55:10 -0800 |
| parents | 56d3e9c28eb0 |
| children |
| rev | line source |
|---|---|
| 17130 | 1 /* This file is no longer automatically generated from libc. */ |
| 2 | |
| 3 #define _MALLOC_INTERNAL | |
| 4 | |
| 5 /* The malloc headers and source files from the C library follow here. */ | |
| 6 | |
| 7 /* Declarations for `malloc' and friends. | |
|
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64092
diff
changeset
|
8 Copyright (C) 1990, 1991, 1992, 1993, 1995, 1996, 1999, 2002, 2003, 2004, |
| 75348 | 9 2005, 2006, 2007 Free Software Foundation, Inc. |
| 17130 | 10 Written May 1989 by Mike Haertel. |
| 11 | |
| 12 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
13 modify it under the terms of the GNU General Public License as |
| 17130 | 14 published by the Free Software Foundation; either version 2 of the |
| 15 License, or (at your option) any later version. | |
| 16 | |
| 17 This library is distributed in the hope that it will be useful, | |
| 18 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
20 General Public License for more details. |
| 17130 | 21 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
22 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
23 License along with this library; see the file COPYING. If |
| 64092 | 24 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 25 Fifth Floor, Boston, MA 02110-1301, USA. | |
| 17130 | 26 |
| 27 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 28 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 29 | |
| 30 #ifndef _MALLOC_H | |
| 31 | |
| 32 #define _MALLOC_H 1 | |
| 33 | |
| 34 #ifdef _MALLOC_INTERNAL | |
| 35 | |
| 36 #ifdef HAVE_CONFIG_H | |
| 37 #include <config.h> | |
| 38 #endif | |
| 39 | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
40 #ifdef HAVE_GTK_AND_PTHREAD |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
41 #define USE_PTHREAD |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
42 #endif |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
43 |
|
40670
8cb4d744ae0d
Test BROKEN_PROTOTYPES.
Richard M. Stallman <rms@gnu.org>
parents:
37372
diff
changeset
|
44 #if ((defined __cplusplus || (defined (__STDC__) && __STDC__) \ |
|
108860
c15389f78514
* src/gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107733
diff
changeset
|
45 || defined STDC_HEADERS || defined PROTOTYPES)) |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
46 #undef PP |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
47 #define PP(args) args |
| 17130 | 48 #undef __ptr_t |
| 49 #define __ptr_t void * | |
| 50 #else /* Not C++ or ANSI C. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
51 #undef PP |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
52 #define PP(args) () |
| 17130 | 53 #undef __ptr_t |
| 54 #define __ptr_t char * | |
| 55 #endif /* C++ or ANSI C. */ | |
| 56 | |
| 57 #if defined(_LIBC) || defined(STDC_HEADERS) || defined(USG) | |
| 58 #include <string.h> | |
| 59 #else | |
| 60 #ifndef memset | |
| 61 #define memset(s, zero, n) bzero ((s), (n)) | |
| 62 #endif | |
| 63 #ifndef memcpy | |
| 64 #define memcpy(d, s, n) bcopy ((s), (d), (n)) | |
| 65 #endif | |
| 66 #endif | |
| 67 | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
68 #ifdef HAVE_LIMITS_H |
| 17130 | 69 #include <limits.h> |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
70 #endif |
| 17130 | 71 #ifndef CHAR_BIT |
| 72 #define CHAR_BIT 8 | |
| 73 #endif | |
| 74 | |
| 75 #include <unistd.h> | |
| 76 | |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
77 #ifdef USE_PTHREAD |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
78 #include <pthread.h> |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
79 #endif |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
80 |
| 17130 | 81 #endif /* _MALLOC_INTERNAL. */ |
| 82 | |
| 83 | |
| 84 #ifdef __cplusplus | |
| 85 extern "C" | |
| 86 { | |
| 87 #endif | |
| 88 | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
89 #ifdef STDC_HEADERS |
| 17130 | 90 #include <stddef.h> |
| 91 #define __malloc_size_t size_t | |
| 92 #define __malloc_ptrdiff_t ptrdiff_t | |
| 93 #else | |
|
37372
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
94 #ifdef __GNUC__ |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
95 #include <stddef.h> |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
96 #ifdef __SIZE_TYPE__ |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
97 #define __malloc_size_t __SIZE_TYPE__ |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
98 #endif |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
99 #endif |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
100 #ifndef __malloc_size_t |
| 17130 | 101 #define __malloc_size_t unsigned int |
|
37372
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
102 #endif |
| 17130 | 103 #define __malloc_ptrdiff_t int |
| 104 #endif | |
| 105 | |
| 106 #ifndef NULL | |
| 107 #define NULL 0 | |
| 108 #endif | |
| 109 | |
| 110 | |
| 111 /* Allocate SIZE bytes of memory. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
112 extern __ptr_t malloc PP ((__malloc_size_t __size)); |
| 17130 | 113 /* Re-allocate the previously allocated block |
| 114 in __ptr_t, making the new block SIZE bytes long. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
115 extern __ptr_t realloc PP ((__ptr_t __ptr, __malloc_size_t __size)); |
| 17130 | 116 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */ |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
117 extern __ptr_t calloc PP ((__malloc_size_t __nmemb, __malloc_size_t __size)); |
| 17130 | 118 /* Free a block allocated by `malloc', `realloc' or `calloc'. */ |
|
91702
b7a5a89054dc
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82335
diff
changeset
|
119 extern void free PP ((__ptr_t __ptr)); |
| 17130 | 120 |
| 121 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */ | |
|
107733
84b961690802
Remove support for DJGPP v1.x (bug#5813).
Eli Zaretskii <eliz@gnu.org>
parents:
98455
diff
changeset
|
122 #if !defined (_MALLOC_INTERNAL) || defined (MSDOS) /* Avoid conflict. */ |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
123 extern __ptr_t memalign PP ((__malloc_size_t __alignment, |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
124 __malloc_size_t __size)); |
|
82335
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
125 extern int posix_memalign PP ((__ptr_t *, __malloc_size_t, |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
126 __malloc_size_t size)); |
| 17130 | 127 #endif |
| 128 | |
| 129 /* Allocate SIZE bytes on a page boundary. */ | |
| 130 #if ! (defined (_MALLOC_INTERNAL) && defined (GMALLOC_INHIBIT_VALLOC)) | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
131 extern __ptr_t valloc PP ((__malloc_size_t __size)); |
| 17130 | 132 #endif |
| 133 | |
|
82308
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
134 #ifdef USE_PTHREAD |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
135 /* Set up mutexes and make malloc etc. thread-safe. */ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
136 extern void malloc_enable_thread PP ((void)); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
137 #endif |
| 17130 | 138 |
| 139 #ifdef _MALLOC_INTERNAL | |
| 140 | |
| 141 /* The allocator divides the heap into blocks of fixed size; large | |
| 142 requests receive one or more whole blocks, and small requests | |
| 143 receive a fragment of a block. Fragment sizes are powers of two, | |
| 144 and all fragments of a block are the same size. When all the | |
| 145 fragments in a block have been freed, the block itself is freed. */ | |
| 146 #define INT_BIT (CHAR_BIT * sizeof(int)) | |
| 147 #define BLOCKLOG (INT_BIT > 16 ? 12 : 9) | |
| 148 #define BLOCKSIZE (1 << BLOCKLOG) | |
| 149 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE) | |
| 150 | |
| 151 /* Determine the amount of memory spanned by the initial heap table | |
| 152 (not an absolute limit). */ | |
| 153 #define HEAP (INT_BIT > 16 ? 4194304 : 65536) | |
| 154 | |
| 155 /* Number of contiguous free blocks allowed to build up at the end of | |
| 156 memory before they will be returned to the system. */ | |
| 157 #define FINAL_FREE_BLOCKS 8 | |
| 158 | |
| 159 /* Data structure giving per-block information. */ | |
| 160 typedef union | |
| 161 { | |
| 162 /* Heap information for a busy block. */ | |
| 163 struct | |
| 164 { | |
| 165 /* Zero for a large (multiblock) object, or positive giving the | |
| 166 logarithm to the base two of the fragment size. */ | |
| 167 int type; | |
| 168 union | |
| 169 { | |
| 170 struct | |
| 171 { | |
| 172 __malloc_size_t nfree; /* Free frags in a fragmented block. */ | |
| 173 __malloc_size_t first; /* First free fragment of the block. */ | |
| 174 } frag; | |
| 175 /* For a large object, in its first block, this has the number | |
| 176 of blocks in the object. In the other blocks, this has a | |
| 177 negative number which says how far back the first block is. */ | |
| 178 __malloc_ptrdiff_t size; | |
| 179 } info; | |
| 180 } busy; | |
| 181 /* Heap information for a free block | |
| 182 (that may be the first of a free cluster). */ | |
| 183 struct | |
| 184 { | |
| 185 __malloc_size_t size; /* Size (in blocks) of a free cluster. */ | |
| 186 __malloc_size_t next; /* Index of next free cluster. */ | |
| 187 __malloc_size_t prev; /* Index of previous free cluster. */ | |
| 188 } free; | |
| 189 } malloc_info; | |
| 190 | |
| 191 /* Pointer to first block of the heap. */ | |
| 192 extern char *_heapbase; | |
| 193 | |
| 194 /* Table indexed by block number giving per-block information. */ | |
| 195 extern malloc_info *_heapinfo; | |
| 196 | |
| 197 /* Address to block number and vice versa. */ | |
| 198 #define BLOCK(A) (((char *) (A) - _heapbase) / BLOCKSIZE + 1) | |
| 199 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase)) | |
| 200 | |
| 201 /* Current search index for the heap table. */ | |
| 202 extern __malloc_size_t _heapindex; | |
| 203 | |
| 204 /* Limit of valid info table indices. */ | |
| 205 extern __malloc_size_t _heaplimit; | |
| 206 | |
| 207 /* Doubly linked lists of free fragments. */ | |
| 208 struct list | |
| 209 { | |
| 210 struct list *next; | |
| 211 struct list *prev; | |
| 212 }; | |
| 213 | |
| 214 /* Free list headers for each fragment size. */ | |
| 215 extern struct list _fraghead[]; | |
| 216 | |
| 217 /* List of blocks allocated with `memalign' (or `valloc'). */ | |
| 218 struct alignlist | |
| 219 { | |
| 220 struct alignlist *next; | |
| 221 __ptr_t aligned; /* The address that memaligned returned. */ | |
| 222 __ptr_t exact; /* The address that malloc returned. */ | |
| 223 }; | |
| 224 extern struct alignlist *_aligned_blocks; | |
| 225 | |
| 226 /* Instrumentation. */ | |
| 227 extern __malloc_size_t _chunks_used; | |
| 228 extern __malloc_size_t _bytes_used; | |
| 229 extern __malloc_size_t _chunks_free; | |
| 230 extern __malloc_size_t _bytes_free; | |
| 231 | |
| 232 /* Internal versions of `malloc', `realloc', and `free' | |
| 233 used when these functions need to call each other. | |
| 234 They are the same but don't call the hooks. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
235 extern __ptr_t _malloc_internal PP ((__malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
236 extern __ptr_t _realloc_internal PP ((__ptr_t __ptr, __malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
237 extern void _free_internal PP ((__ptr_t __ptr)); |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
238 extern __ptr_t _malloc_internal_nolock PP ((__malloc_size_t __size)); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
239 extern __ptr_t _realloc_internal_nolock PP ((__ptr_t __ptr, __malloc_size_t __size)); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
240 extern void _free_internal_nolock PP ((__ptr_t __ptr)); |
| 17130 | 241 |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
242 #ifdef USE_PTHREAD |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
243 extern pthread_mutex_t _malloc_mutex, _aligned_blocks_mutex; |
|
82308
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
244 extern int _malloc_thread_enabled_p; |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
245 #define LOCK() \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
246 do { \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
247 if (_malloc_thread_enabled_p) \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
248 pthread_mutex_lock (&_malloc_mutex); \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
249 } while (0) |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
250 #define UNLOCK() \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
251 do { \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
252 if (_malloc_thread_enabled_p) \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
253 pthread_mutex_unlock (&_malloc_mutex); \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
254 } while (0) |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
255 #define LOCK_ALIGNED_BLOCKS() \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
256 do { \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
257 if (_malloc_thread_enabled_p) \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
258 pthread_mutex_lock (&_aligned_blocks_mutex); \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
259 } while (0) |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
260 #define UNLOCK_ALIGNED_BLOCKS() \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
261 do { \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
262 if (_malloc_thread_enabled_p) \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
263 pthread_mutex_unlock (&_aligned_blocks_mutex); \ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
264 } while (0) |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
265 #else |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
266 #define LOCK() |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
267 #define UNLOCK() |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
268 #define LOCK_ALIGNED_BLOCKS() |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
269 #define UNLOCK_ALIGNED_BLOCKS() |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
270 #endif |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
271 |
| 17130 | 272 #endif /* _MALLOC_INTERNAL. */ |
| 273 | |
| 274 /* Given an address in the middle of a malloc'd object, | |
| 275 return the address of the beginning of the object. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
276 extern __ptr_t malloc_find_object_address PP ((__ptr_t __ptr)); |
| 17130 | 277 |
| 278 /* Underlying allocation function; successive calls should | |
| 279 return contiguous pieces of memory. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
280 extern __ptr_t (*__morecore) PP ((__malloc_ptrdiff_t __size)); |
| 17130 | 281 |
| 282 /* Default value of `__morecore'. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
283 extern __ptr_t __default_morecore PP ((__malloc_ptrdiff_t __size)); |
| 17130 | 284 |
| 285 /* If not NULL, this function is called after each time | |
| 286 `__morecore' is called to increase the data size. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
287 extern void (*__after_morecore_hook) PP ((void)); |
| 17130 | 288 |
| 289 /* Number of extra blocks to get each time we ask for more core. | |
| 290 This reduces the frequency of calling `(*__morecore)'. */ | |
| 291 extern __malloc_size_t __malloc_extra_blocks; | |
| 292 | |
| 293 /* Nonzero if `malloc' has been called and done its initialization. */ | |
| 294 extern int __malloc_initialized; | |
| 295 /* Function called to initialize malloc data structures. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
296 extern int __malloc_initialize PP ((void)); |
| 17130 | 297 |
| 298 /* Hooks for debugging versions. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
299 extern void (*__malloc_initialize_hook) PP ((void)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
300 extern void (*__free_hook) PP ((__ptr_t __ptr)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
301 extern __ptr_t (*__malloc_hook) PP ((__malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
302 extern __ptr_t (*__realloc_hook) PP ((__ptr_t __ptr, __malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
303 extern __ptr_t (*__memalign_hook) PP ((__malloc_size_t __size, |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
304 __malloc_size_t __alignment)); |
| 17130 | 305 |
| 306 /* Return values for `mprobe': these are the kinds of inconsistencies that | |
| 307 `mcheck' enables detection of. */ | |
| 308 enum mcheck_status | |
| 309 { | |
| 310 MCHECK_DISABLED = -1, /* Consistency checking is not turned on. */ | |
| 311 MCHECK_OK, /* Block is fine. */ | |
| 312 MCHECK_FREE, /* Block freed twice. */ | |
| 313 MCHECK_HEAD, /* Memory before the block was clobbered. */ | |
| 314 MCHECK_TAIL /* Memory after the block was clobbered. */ | |
| 315 }; | |
| 316 | |
| 317 /* Activate a standard collection of debugging hooks. This must be called | |
| 318 before `malloc' is ever called. ABORTFUNC is called with an error code | |
| 319 (see enum above) when an inconsistency is detected. If ABORTFUNC is | |
| 320 null, the standard function prints on stderr and then calls `abort'. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
321 extern int mcheck PP ((void (*__abortfunc) PP ((enum mcheck_status)))); |
| 17130 | 322 |
| 323 /* Check for aberrations in a particular malloc'd block. You must have | |
| 324 called `mcheck' already. These are the same checks that `mcheck' does | |
| 325 when you free or reallocate a block. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
326 extern enum mcheck_status mprobe PP ((__ptr_t __ptr)); |
| 17130 | 327 |
| 328 /* Activate a standard collection of tracing hooks. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
329 extern void mtrace PP ((void)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
330 extern void muntrace PP ((void)); |
| 17130 | 331 |
| 332 /* Statistics available to the user. */ | |
| 333 struct mstats | |
| 334 { | |
| 335 __malloc_size_t bytes_total; /* Total size of the heap. */ | |
| 336 __malloc_size_t chunks_used; /* Chunks allocated by the user. */ | |
| 337 __malloc_size_t bytes_used; /* Byte total of user-allocated chunks. */ | |
| 338 __malloc_size_t chunks_free; /* Chunks in the free list. */ | |
| 339 __malloc_size_t bytes_free; /* Byte total of chunks in the free list. */ | |
| 340 }; | |
| 341 | |
| 342 /* Pick up the current statistics. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
343 extern struct mstats mstats PP ((void)); |
| 17130 | 344 |
| 345 /* Call WARNFUN with a warning message when memory usage is high. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
346 extern void memory_warnings PP ((__ptr_t __start, |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
347 void (*__warnfun) PP ((const char *)))); |
| 17130 | 348 |
| 349 | |
| 350 /* Relocating allocator. */ | |
| 351 | |
| 352 /* Allocate SIZE bytes, and store the address in *HANDLEPTR. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
353 extern __ptr_t r_alloc PP ((__ptr_t *__handleptr, __malloc_size_t __size)); |
| 17130 | 354 |
| 355 /* Free the storage allocated in HANDLEPTR. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
356 extern void r_alloc_free PP ((__ptr_t *__handleptr)); |
| 17130 | 357 |
| 358 /* Adjust the block at HANDLEPTR to be SIZE bytes long. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
359 extern __ptr_t r_re_alloc PP ((__ptr_t *__handleptr, __malloc_size_t __size)); |
| 17130 | 360 |
| 361 | |
| 362 #ifdef __cplusplus | |
| 363 } | |
| 364 #endif | |
| 365 | |
| 366 #endif /* malloc.h */ | |
| 367 /* Memory allocator `malloc'. | |
| 368 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
| 369 Written May 1989 by Mike Haertel. | |
| 370 | |
| 371 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
372 modify it under the terms of the GNU General Public License as |
| 17130 | 373 published by the Free Software Foundation; either version 2 of the |
| 374 License, or (at your option) any later version. | |
| 375 | |
| 376 This library is distributed in the hope that it will be useful, | |
| 377 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 378 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
379 General Public License for more details. |
| 17130 | 380 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
381 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
382 License along with this library; see the file COPYING. If |
| 64092 | 383 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 384 Fifth Floor, Boston, MA 02110-1301, USA. | |
| 17130 | 385 |
| 386 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 387 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 388 | |
| 389 #ifndef _MALLOC_INTERNAL | |
| 390 #define _MALLOC_INTERNAL | |
| 391 #include <malloc.h> | |
| 392 #endif | |
| 393 #include <errno.h> | |
| 394 | |
| 395 /* How to really get more memory. */ | |
|
54824
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
396 #if defined(CYGWIN) |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
397 extern __ptr_t bss_sbrk PP ((ptrdiff_t __size)); |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
398 extern int bss_sbrk_did_unexec; |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
399 #endif |
|
81500
55e8330e329d
(__morecore): Fix the declaration to comply with the definition.
Sam Steingold <sds@gnu.org>
parents:
76776
diff
changeset
|
400 __ptr_t (*__morecore) PP ((__malloc_ptrdiff_t __size)) = __default_morecore; |
| 17130 | 401 |
| 402 /* Debugging hook for `malloc'. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
403 __ptr_t (*__malloc_hook) PP ((__malloc_size_t __size)); |
| 17130 | 404 |
| 405 /* Pointer to the base of the first block. */ | |
| 406 char *_heapbase; | |
| 407 | |
| 408 /* Block information table. Allocated with align/__free (not malloc/free). */ | |
| 409 malloc_info *_heapinfo; | |
| 410 | |
| 411 /* Number of info entries. */ | |
| 412 static __malloc_size_t heapsize; | |
| 413 | |
| 414 /* Search index in the info table. */ | |
| 415 __malloc_size_t _heapindex; | |
| 416 | |
| 417 /* Limit of valid info table indices. */ | |
| 418 __malloc_size_t _heaplimit; | |
| 419 | |
| 420 /* Free lists for each fragment size. */ | |
| 421 struct list _fraghead[BLOCKLOG]; | |
| 422 | |
| 423 /* Instrumentation. */ | |
| 424 __malloc_size_t _chunks_used; | |
| 425 __malloc_size_t _bytes_used; | |
| 426 __malloc_size_t _chunks_free; | |
| 427 __malloc_size_t _bytes_free; | |
| 428 | |
| 429 /* Are you experienced? */ | |
| 430 int __malloc_initialized; | |
| 431 | |
| 432 __malloc_size_t __malloc_extra_blocks; | |
| 433 | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
434 void (*__malloc_initialize_hook) PP ((void)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
435 void (*__after_morecore_hook) PP ((void)); |
| 17130 | 436 |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
437 #if defined GC_MALLOC_CHECK && defined GC_PROTECT_MALLOC_STATE |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
438 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
439 /* Some code for hunting a bug writing into _heapinfo. |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
440 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
441 Call this macro with argument PROT non-zero to protect internal |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
442 malloc state against writing to it, call it with a zero argument to |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
443 make it readable and writable. |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
444 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
445 Note that this only works if BLOCKSIZE == page size, which is |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
446 the case on the i386. */ |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
447 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
448 #include <sys/types.h> |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
449 #include <sys/mman.h> |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
450 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
451 static int state_protected_p; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
452 static __malloc_size_t last_state_size; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
453 static malloc_info *last_heapinfo; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
454 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
455 void |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
456 protect_malloc_state (protect_p) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
457 int protect_p; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
458 { |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
459 /* If _heapinfo has been relocated, make sure its old location |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
460 isn't left read-only; it will be reused by malloc. */ |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
461 if (_heapinfo != last_heapinfo |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
462 && last_heapinfo |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
463 && state_protected_p) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
464 mprotect (last_heapinfo, last_state_size, PROT_READ | PROT_WRITE); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
465 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
466 last_state_size = _heaplimit * sizeof *_heapinfo; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
467 last_heapinfo = _heapinfo; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
468 |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
469 if (protect_p != state_protected_p) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
470 { |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
471 state_protected_p = protect_p; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
472 if (mprotect (_heapinfo, last_state_size, |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
473 protect_p ? PROT_READ : PROT_READ | PROT_WRITE) != 0) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
474 abort (); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
475 } |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
476 } |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
477 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
478 #define PROTECT_MALLOC_STATE(PROT) protect_malloc_state(PROT) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
479 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
480 #else |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
481 #define PROTECT_MALLOC_STATE(PROT) /* empty */ |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
482 #endif |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
483 |
| 17130 | 484 |
| 485 /* Aligned allocation. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
486 static __ptr_t align PP ((__malloc_size_t)); |
| 17130 | 487 static __ptr_t |
| 488 align (size) | |
| 489 __malloc_size_t size; | |
| 490 { | |
| 491 __ptr_t result; | |
| 492 unsigned long int adj; | |
| 493 | |
|
37268
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
494 /* align accepts an unsigned argument, but __morecore accepts a |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
495 signed one. This could lead to trouble if SIZE overflows a |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
496 signed int type accepted by __morecore. We just punt in that |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
497 case, since they are requesting a ludicrous amount anyway. */ |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
498 if ((__malloc_ptrdiff_t)size < 0) |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
499 result = 0; |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
500 else |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
501 result = (*__morecore) (size); |
| 17130 | 502 adj = (unsigned long int) ((unsigned long int) ((char *) result - |
| 503 (char *) NULL)) % BLOCKSIZE; | |
| 504 if (adj != 0) | |
| 505 { | |
| 506 __ptr_t new; | |
| 507 adj = BLOCKSIZE - adj; | |
| 508 new = (*__morecore) (adj); | |
| 509 result = (char *) result + adj; | |
| 510 } | |
| 511 | |
| 512 if (__after_morecore_hook) | |
| 513 (*__after_morecore_hook) (); | |
| 514 | |
| 515 return result; | |
| 516 } | |
| 517 | |
| 518 /* Get SIZE bytes, if we can get them starting at END. | |
| 519 Return the address of the space we got. | |
| 520 If we cannot get space at END, fail and return 0. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
521 static __ptr_t get_contiguous_space PP ((__malloc_ptrdiff_t, __ptr_t)); |
| 17130 | 522 static __ptr_t |
| 523 get_contiguous_space (size, position) | |
| 524 __malloc_ptrdiff_t size; | |
| 525 __ptr_t position; | |
| 526 { | |
| 527 __ptr_t before; | |
| 528 __ptr_t after; | |
| 529 | |
| 530 before = (*__morecore) (0); | |
| 531 /* If we can tell in advance that the break is at the wrong place, | |
| 532 fail now. */ | |
| 533 if (before != position) | |
| 534 return 0; | |
| 535 | |
| 536 /* Allocate SIZE bytes and get the address of them. */ | |
| 537 after = (*__morecore) (size); | |
| 538 if (!after) | |
| 539 return 0; | |
| 540 | |
| 541 /* It was not contiguous--reject it. */ | |
| 542 if (after != position) | |
| 543 { | |
| 544 (*__morecore) (- size); | |
| 545 return 0; | |
| 546 } | |
| 547 | |
| 548 return after; | |
| 549 } | |
| 550 | |
| 551 | |
| 552 /* This is called when `_heapinfo' and `heapsize' have just | |
| 553 been set to describe a new info table. Set up the table | |
| 554 to describe itself and account for it in the statistics. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
555 static void register_heapinfo PP ((void)); |
| 17130 | 556 #ifdef __GNUC__ |
| 557 __inline__ | |
| 558 #endif | |
| 559 static void | |
| 560 register_heapinfo () | |
| 561 { | |
| 562 __malloc_size_t block, blocks; | |
| 563 | |
| 564 block = BLOCK (_heapinfo); | |
| 565 blocks = BLOCKIFY (heapsize * sizeof (malloc_info)); | |
| 566 | |
| 567 /* Account for the _heapinfo block itself in the statistics. */ | |
| 568 _bytes_used += blocks * BLOCKSIZE; | |
| 569 ++_chunks_used; | |
| 570 | |
| 571 /* Describe the heapinfo block itself in the heapinfo. */ | |
| 572 _heapinfo[block].busy.type = 0; | |
| 573 _heapinfo[block].busy.info.size = blocks; | |
| 574 /* Leave back-pointers for malloc_find_address. */ | |
| 575 while (--blocks > 0) | |
| 576 _heapinfo[block + blocks].busy.info.size = -blocks; | |
| 577 } | |
| 578 | |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
579 #ifdef USE_PTHREAD |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
580 pthread_mutex_t _malloc_mutex = PTHREAD_MUTEX_INITIALIZER; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
581 pthread_mutex_t _aligned_blocks_mutex = PTHREAD_MUTEX_INITIALIZER; |
|
82308
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
582 int _malloc_thread_enabled_p; |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
583 |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
584 static void |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
585 malloc_atfork_handler_prepare () |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
586 { |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
587 LOCK (); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
588 LOCK_ALIGNED_BLOCKS (); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
589 } |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
590 |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
591 static void |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
592 malloc_atfork_handler_parent () |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
593 { |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
594 UNLOCK_ALIGNED_BLOCKS (); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
595 UNLOCK (); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
596 } |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
597 |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
598 static void |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
599 malloc_atfork_handler_child () |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
600 { |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
601 UNLOCK_ALIGNED_BLOCKS (); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
602 UNLOCK (); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
603 } |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
604 |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
605 /* Set up mutexes and make malloc etc. thread-safe. */ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
606 void |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
607 malloc_enable_thread () |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
608 { |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
609 if (_malloc_thread_enabled_p) |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
610 return; |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
611 |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
612 /* Some pthread implementations call malloc for statically |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
613 initialized mutexes when they are used first. To avoid such a |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
614 situation, we initialize mutexes here while their use is |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
615 disabled in malloc etc. */ |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
616 pthread_mutex_init (&_malloc_mutex, NULL); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
617 pthread_mutex_init (&_aligned_blocks_mutex, NULL); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
618 pthread_atfork (malloc_atfork_handler_prepare, |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
619 malloc_atfork_handler_parent, |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
620 malloc_atfork_handler_child); |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
621 _malloc_thread_enabled_p = 1; |
|
7856255721ef
(_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82198
diff
changeset
|
622 } |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
623 #endif |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
624 |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
625 static void |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
626 malloc_initialize_1 () |
| 17130 | 627 { |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
628 #ifdef GC_MCHECK |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
629 mcheck (NULL); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
630 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
631 |
| 17130 | 632 if (__malloc_initialize_hook) |
| 633 (*__malloc_initialize_hook) (); | |
| 634 | |
| 635 heapsize = HEAP / BLOCKSIZE; | |
| 636 _heapinfo = (malloc_info *) align (heapsize * sizeof (malloc_info)); | |
| 637 if (_heapinfo == NULL) | |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
638 return; |
| 17130 | 639 memset (_heapinfo, 0, heapsize * sizeof (malloc_info)); |
| 640 _heapinfo[0].free.size = 0; | |
| 641 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0; | |
| 642 _heapindex = 0; | |
| 643 _heapbase = (char *) _heapinfo; | |
| 644 _heaplimit = BLOCK (_heapbase + heapsize * sizeof (malloc_info)); | |
| 645 | |
| 646 register_heapinfo (); | |
| 647 | |
| 648 __malloc_initialized = 1; | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
649 PROTECT_MALLOC_STATE (1); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
650 return; |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
651 } |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
652 |
|
82198
8cc259bc54fd
(__malloc_initialize): Remove pthread_once. Not needed.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
81615
diff
changeset
|
653 /* Set everything up and remember that we have. |
|
8cc259bc54fd
(__malloc_initialize): Remove pthread_once. Not needed.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
81615
diff
changeset
|
654 main will call malloc which calls this function. That is before any threads |
|
8cc259bc54fd
(__malloc_initialize): Remove pthread_once. Not needed.
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
81615
diff
changeset
|
655 or signal handlers has been set up, so we don't need thread protection. */ |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
656 int |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
657 __malloc_initialize () |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
658 { |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
659 if (__malloc_initialized) |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
660 return 0; |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
661 |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
662 malloc_initialize_1 (); |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
663 |
|
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
664 return __malloc_initialized; |
| 17130 | 665 } |
| 666 | |
| 667 static int morecore_recursing; | |
| 668 | |
| 669 /* Get neatly aligned memory, initializing or | |
| 670 growing the heap info table as necessary. */ | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
671 static __ptr_t morecore_nolock PP ((__malloc_size_t)); |
| 17130 | 672 static __ptr_t |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
673 morecore_nolock (size) |
| 17130 | 674 __malloc_size_t size; |
| 675 { | |
| 676 __ptr_t result; | |
| 677 malloc_info *newinfo, *oldinfo; | |
| 678 __malloc_size_t newsize; | |
| 679 | |
| 680 if (morecore_recursing) | |
| 681 /* Avoid recursion. The caller will know how to handle a null return. */ | |
| 682 return NULL; | |
| 683 | |
| 684 result = align (size); | |
| 685 if (result == NULL) | |
| 686 return NULL; | |
| 687 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
688 PROTECT_MALLOC_STATE (0); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
689 |
| 17130 | 690 /* Check if we need to grow the info table. */ |
| 691 if ((__malloc_size_t) BLOCK ((char *) result + size) > heapsize) | |
| 692 { | |
| 693 /* Calculate the new _heapinfo table size. We do not account for the | |
| 694 added blocks in the table itself, as we hope to place them in | |
| 695 existing free space, which is already covered by part of the | |
| 696 existing table. */ | |
| 697 newsize = heapsize; | |
| 698 do | |
| 699 newsize *= 2; | |
| 700 while ((__malloc_size_t) BLOCK ((char *) result + size) > newsize); | |
| 701 | |
| 702 /* We must not reuse existing core for the new info table when called | |
| 703 from realloc in the case of growing a large block, because the | |
| 704 block being grown is momentarily marked as free. In this case | |
| 705 _heaplimit is zero so we know not to reuse space for internal | |
| 706 allocation. */ | |
| 707 if (_heaplimit != 0) | |
| 708 { | |
| 709 /* First try to allocate the new info table in core we already | |
| 710 have, in the usual way using realloc. If realloc cannot | |
| 711 extend it in place or relocate it to existing sufficient core, | |
| 712 we will get called again, and the code above will notice the | |
| 713 `morecore_recursing' flag and return null. */ | |
| 714 int save = errno; /* Don't want to clobber errno with ENOMEM. */ | |
| 715 morecore_recursing = 1; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
716 newinfo = (malloc_info *) _realloc_internal_nolock |
| 17130 | 717 (_heapinfo, newsize * sizeof (malloc_info)); |
| 718 morecore_recursing = 0; | |
| 719 if (newinfo == NULL) | |
| 720 errno = save; | |
| 721 else | |
| 722 { | |
| 723 /* We found some space in core, and realloc has put the old | |
| 724 table's blocks on the free list. Now zero the new part | |
| 725 of the table and install the new table location. */ | |
| 726 memset (&newinfo[heapsize], 0, | |
| 727 (newsize - heapsize) * sizeof (malloc_info)); | |
| 728 _heapinfo = newinfo; | |
| 729 heapsize = newsize; | |
| 730 goto got_heap; | |
| 731 } | |
| 732 } | |
| 733 | |
| 734 /* Allocate new space for the malloc info table. */ | |
| 735 while (1) | |
| 736 { | |
| 737 newinfo = (malloc_info *) align (newsize * sizeof (malloc_info)); | |
| 738 | |
| 739 /* Did it fail? */ | |
| 740 if (newinfo == NULL) | |
| 741 { | |
| 742 (*__morecore) (-size); | |
| 743 return NULL; | |
| 744 } | |
| 745 | |
| 746 /* Is it big enough to record status for its own space? | |
| 747 If so, we win. */ | |
| 748 if ((__malloc_size_t) BLOCK ((char *) newinfo | |
| 749 + newsize * sizeof (malloc_info)) | |
| 750 < newsize) | |
| 751 break; | |
| 752 | |
| 753 /* Must try again. First give back most of what we just got. */ | |
| 754 (*__morecore) (- newsize * sizeof (malloc_info)); | |
| 755 newsize *= 2; | |
| 756 } | |
| 757 | |
| 758 /* Copy the old table to the beginning of the new, | |
| 759 and zero the rest of the new table. */ | |
| 760 memcpy (newinfo, _heapinfo, heapsize * sizeof (malloc_info)); | |
| 761 memset (&newinfo[heapsize], 0, | |
| 762 (newsize - heapsize) * sizeof (malloc_info)); | |
| 763 oldinfo = _heapinfo; | |
| 764 _heapinfo = newinfo; | |
| 765 heapsize = newsize; | |
| 766 | |
| 767 register_heapinfo (); | |
| 768 | |
| 769 /* Reset _heaplimit so _free_internal never decides | |
| 770 it can relocate or resize the info table. */ | |
| 771 _heaplimit = 0; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
772 _free_internal_nolock (oldinfo); |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
773 PROTECT_MALLOC_STATE (0); |
| 17130 | 774 |
| 775 /* The new heap limit includes the new table just allocated. */ | |
| 776 _heaplimit = BLOCK ((char *) newinfo + heapsize * sizeof (malloc_info)); | |
| 777 return result; | |
| 778 } | |
| 779 | |
| 780 got_heap: | |
| 781 _heaplimit = BLOCK ((char *) result + size); | |
| 782 return result; | |
| 783 } | |
| 784 | |
| 785 /* Allocate memory from the heap. */ | |
| 786 __ptr_t | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
787 _malloc_internal_nolock (size) |
| 17130 | 788 __malloc_size_t size; |
| 789 { | |
| 790 __ptr_t result; | |
| 791 __malloc_size_t block, blocks, lastblocks, start; | |
| 792 register __malloc_size_t i; | |
| 793 struct list *next; | |
| 794 | |
| 795 /* ANSI C allows `malloc (0)' to either return NULL, or to return a | |
| 796 valid address you can realloc and free (though not dereference). | |
| 797 | |
| 798 It turns out that some extant code (sunrpc, at least Ultrix's version) | |
| 799 expects `malloc (0)' to return non-NULL and breaks otherwise. | |
| 800 Be compatible. */ | |
| 801 | |
| 802 #if 0 | |
| 803 if (size == 0) | |
| 804 return NULL; | |
| 805 #endif | |
| 806 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
807 PROTECT_MALLOC_STATE (0); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
808 |
| 17130 | 809 if (size < sizeof (struct list)) |
| 810 size = sizeof (struct list); | |
| 811 | |
| 812 /* Determine the allocation policy based on the request size. */ | |
| 813 if (size <= BLOCKSIZE / 2) | |
| 814 { | |
| 815 /* Small allocation to receive a fragment of a block. | |
| 816 Determine the logarithm to base two of the fragment size. */ | |
| 817 register __malloc_size_t log = 1; | |
| 818 --size; | |
| 819 while ((size /= 2) != 0) | |
| 820 ++log; | |
| 821 | |
| 822 /* Look in the fragment lists for a | |
| 823 free fragment of the desired size. */ | |
| 824 next = _fraghead[log].next; | |
| 825 if (next != NULL) | |
| 826 { | |
| 827 /* There are free fragments of this size. | |
| 828 Pop a fragment out of the fragment list and return it. | |
| 829 Update the block's nfree and first counters. */ | |
| 830 result = (__ptr_t) next; | |
| 831 next->prev->next = next->next; | |
| 832 if (next->next != NULL) | |
| 833 next->next->prev = next->prev; | |
| 834 block = BLOCK (result); | |
| 835 if (--_heapinfo[block].busy.info.frag.nfree != 0) | |
| 836 _heapinfo[block].busy.info.frag.first = (unsigned long int) | |
| 837 ((unsigned long int) ((char *) next->next - (char *) NULL) | |
| 838 % BLOCKSIZE) >> log; | |
| 839 | |
| 840 /* Update the statistics. */ | |
| 841 ++_chunks_used; | |
| 842 _bytes_used += 1 << log; | |
| 843 --_chunks_free; | |
| 844 _bytes_free -= 1 << log; | |
| 845 } | |
| 846 else | |
| 847 { | |
| 848 /* No free fragments of the desired size, so get a new block | |
| 849 and break it into fragments, returning the first. */ | |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
850 #ifdef GC_MALLOC_CHECK |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
851 result = _malloc_internal_nolock (BLOCKSIZE); |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
852 PROTECT_MALLOC_STATE (0); |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
853 #elif defined (USE_PTHREAD) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
854 result = _malloc_internal_nolock (BLOCKSIZE); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
855 #else |
| 17130 | 856 result = malloc (BLOCKSIZE); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
857 #endif |
| 17130 | 858 if (result == NULL) |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
859 { |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
860 PROTECT_MALLOC_STATE (1); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
861 goto out; |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
862 } |
| 17130 | 863 |
| 864 /* Link all fragments but the first into the free list. */ | |
| 865 next = (struct list *) ((char *) result + (1 << log)); | |
| 866 next->next = NULL; | |
| 867 next->prev = &_fraghead[log]; | |
| 868 _fraghead[log].next = next; | |
| 869 | |
| 870 for (i = 2; i < (__malloc_size_t) (BLOCKSIZE >> log); ++i) | |
| 871 { | |
| 872 next = (struct list *) ((char *) result + (i << log)); | |
| 873 next->next = _fraghead[log].next; | |
| 874 next->prev = &_fraghead[log]; | |
| 875 next->prev->next = next; | |
| 876 next->next->prev = next; | |
| 877 } | |
| 878 | |
| 879 /* Initialize the nfree and first counters for this block. */ | |
| 880 block = BLOCK (result); | |
| 881 _heapinfo[block].busy.type = log; | |
| 882 _heapinfo[block].busy.info.frag.nfree = i - 1; | |
| 883 _heapinfo[block].busy.info.frag.first = i - 1; | |
| 884 | |
| 885 _chunks_free += (BLOCKSIZE >> log) - 1; | |
| 886 _bytes_free += BLOCKSIZE - (1 << log); | |
| 887 _bytes_used -= BLOCKSIZE - (1 << log); | |
| 888 } | |
| 889 } | |
| 890 else | |
| 891 { | |
| 892 /* Large allocation to receive one or more blocks. | |
| 893 Search the free list in a circle starting at the last place visited. | |
| 894 If we loop completely around without finding a large enough | |
| 895 space we will have to get more memory from the system. */ | |
| 896 blocks = BLOCKIFY (size); | |
| 897 start = block = _heapindex; | |
| 898 while (_heapinfo[block].free.size < blocks) | |
| 899 { | |
| 900 block = _heapinfo[block].free.next; | |
| 901 if (block == start) | |
| 902 { | |
| 903 /* Need to get more from the system. Get a little extra. */ | |
| 904 __malloc_size_t wantblocks = blocks + __malloc_extra_blocks; | |
| 905 block = _heapinfo[0].free.prev; | |
| 906 lastblocks = _heapinfo[block].free.size; | |
| 907 /* Check to see if the new core will be contiguous with the | |
| 908 final free block; if so we don't need to get as much. */ | |
| 909 if (_heaplimit != 0 && block + lastblocks == _heaplimit && | |
| 910 /* We can't do this if we will have to make the heap info | |
| 95236 | 911 table bigger to accommodate the new space. */ |
| 17130 | 912 block + wantblocks <= heapsize && |
| 913 get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE, | |
| 914 ADDRESS (block + lastblocks))) | |
| 915 { | |
| 916 /* We got it contiguously. Which block we are extending | |
| 917 (the `final free block' referred to above) might have | |
| 918 changed, if it got combined with a freed info table. */ | |
| 919 block = _heapinfo[0].free.prev; | |
| 920 _heapinfo[block].free.size += (wantblocks - lastblocks); | |
| 921 _bytes_free += (wantblocks - lastblocks) * BLOCKSIZE; | |
| 922 _heaplimit += wantblocks - lastblocks; | |
| 923 continue; | |
| 924 } | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
925 result = morecore_nolock (wantblocks * BLOCKSIZE); |
| 17130 | 926 if (result == NULL) |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
927 goto out; |
| 17130 | 928 block = BLOCK (result); |
| 929 /* Put the new block at the end of the free list. */ | |
| 930 _heapinfo[block].free.size = wantblocks; | |
| 931 _heapinfo[block].free.prev = _heapinfo[0].free.prev; | |
| 932 _heapinfo[block].free.next = 0; | |
| 933 _heapinfo[0].free.prev = block; | |
| 934 _heapinfo[_heapinfo[block].free.prev].free.next = block; | |
| 935 ++_chunks_free; | |
| 936 /* Now loop to use some of that block for this allocation. */ | |
| 937 } | |
| 938 } | |
| 939 | |
| 940 /* At this point we have found a suitable free list entry. | |
| 941 Figure out how to remove what we need from the list. */ | |
| 942 result = ADDRESS (block); | |
| 943 if (_heapinfo[block].free.size > blocks) | |
| 944 { | |
| 945 /* The block we found has a bit left over, | |
| 946 so relink the tail end back into the free list. */ | |
| 947 _heapinfo[block + blocks].free.size | |
| 948 = _heapinfo[block].free.size - blocks; | |
| 949 _heapinfo[block + blocks].free.next | |
| 950 = _heapinfo[block].free.next; | |
| 951 _heapinfo[block + blocks].free.prev | |
| 952 = _heapinfo[block].free.prev; | |
| 953 _heapinfo[_heapinfo[block].free.prev].free.next | |
| 954 = _heapinfo[_heapinfo[block].free.next].free.prev | |
| 955 = _heapindex = block + blocks; | |
| 956 } | |
| 957 else | |
| 958 { | |
| 959 /* The block exactly matches our requirements, | |
| 960 so just remove it from the list. */ | |
| 961 _heapinfo[_heapinfo[block].free.next].free.prev | |
| 962 = _heapinfo[block].free.prev; | |
| 963 _heapinfo[_heapinfo[block].free.prev].free.next | |
| 964 = _heapindex = _heapinfo[block].free.next; | |
| 965 --_chunks_free; | |
| 966 } | |
| 967 | |
| 968 _heapinfo[block].busy.type = 0; | |
| 969 _heapinfo[block].busy.info.size = blocks; | |
| 970 ++_chunks_used; | |
| 971 _bytes_used += blocks * BLOCKSIZE; | |
| 972 _bytes_free -= blocks * BLOCKSIZE; | |
| 973 | |
| 974 /* Mark all the blocks of the object just allocated except for the | |
| 975 first with a negative number so you can find the first block by | |
| 976 adding that adjustment. */ | |
| 977 while (--blocks > 0) | |
| 978 _heapinfo[block + blocks].busy.info.size = -blocks; | |
| 979 } | |
| 980 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
981 PROTECT_MALLOC_STATE (1); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
982 out: |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
983 return result; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
984 } |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
985 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
986 __ptr_t |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
987 _malloc_internal (size) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
988 __malloc_size_t size; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
989 { |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
990 __ptr_t result; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
991 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
992 LOCK (); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
993 result = _malloc_internal_nolock (size); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
994 UNLOCK (); |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
995 |
| 17130 | 996 return result; |
| 997 } | |
| 998 | |
| 999 __ptr_t | |
| 1000 malloc (size) | |
| 1001 __malloc_size_t size; | |
| 1002 { | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1003 __ptr_t (*hook) (__malloc_size_t); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1004 |
| 17130 | 1005 if (!__malloc_initialized && !__malloc_initialize ()) |
| 1006 return NULL; | |
| 1007 | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1008 /* Copy the value of __malloc_hook to an automatic variable in case |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1009 __malloc_hook is modified in another thread between its |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1010 NULL-check and the use. |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1011 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1012 Note: Strictly speaking, this is not a right solution. We should |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1013 use mutexes to access non-read-only variables that are shared |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1014 among multiple threads. We just leave it for compatibility with |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1015 glibc malloc (i.e., assignments to __malloc_hook) for now. */ |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1016 hook = __malloc_hook; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1017 return (hook != NULL ? *hook : _malloc_internal) (size); |
| 17130 | 1018 } |
| 1019 | |
| 1020 #ifndef _LIBC | |
| 1021 | |
| 1022 /* On some ANSI C systems, some libc functions call _malloc, _free | |
| 1023 and _realloc. Make them use the GNU functions. */ | |
| 1024 | |
| 1025 __ptr_t | |
| 1026 _malloc (size) | |
| 1027 __malloc_size_t size; | |
| 1028 { | |
| 1029 return malloc (size); | |
| 1030 } | |
| 1031 | |
| 1032 void | |
| 1033 _free (ptr) | |
| 1034 __ptr_t ptr; | |
| 1035 { | |
| 1036 free (ptr); | |
| 1037 } | |
| 1038 | |
| 1039 __ptr_t | |
| 1040 _realloc (ptr, size) | |
| 1041 __ptr_t ptr; | |
| 1042 __malloc_size_t size; | |
| 1043 { | |
| 1044 return realloc (ptr, size); | |
| 1045 } | |
| 1046 | |
| 1047 #endif | |
| 1048 /* Free a block of memory allocated by `malloc'. | |
| 1049 Copyright 1990, 1991, 1992, 1994, 1995 Free Software Foundation, Inc. | |
| 1050 Written May 1989 by Mike Haertel. | |
| 1051 | |
| 1052 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1053 modify it under the terms of the GNU General Public License as |
| 17130 | 1054 published by the Free Software Foundation; either version 2 of the |
| 1055 License, or (at your option) any later version. | |
| 1056 | |
| 1057 This library is distributed in the hope that it will be useful, | |
| 1058 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1059 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1060 General Public License for more details. |
| 17130 | 1061 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1062 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1063 License along with this library; see the file COPYING. If |
| 64092 | 1064 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 1065 Fifth Floor, Boston, MA 02110-1301, USA. | |
| 17130 | 1066 |
| 1067 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1068 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1069 | |
| 1070 #ifndef _MALLOC_INTERNAL | |
| 1071 #define _MALLOC_INTERNAL | |
| 1072 #include <malloc.h> | |
| 1073 #endif | |
| 1074 | |
| 1075 | |
| 1076 /* Cope with systems lacking `memmove'. */ | |
| 1077 #ifndef memmove | |
|
91702
b7a5a89054dc
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82335
diff
changeset
|
1078 #if (!defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG)) |
| 17130 | 1079 #ifdef emacs |
| 1080 #undef __malloc_safe_bcopy | |
| 1081 #define __malloc_safe_bcopy safe_bcopy | |
| 1082 #endif | |
| 1083 /* This function is defined in realloc.c. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1084 extern void __malloc_safe_bcopy PP ((__ptr_t, __ptr_t, __malloc_size_t)); |
| 17130 | 1085 #define memmove(to, from, size) __malloc_safe_bcopy ((from), (to), (size)) |
| 1086 #endif | |
| 1087 #endif | |
| 1088 | |
| 1089 | |
| 1090 /* Debugging hook for free. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1091 void (*__free_hook) PP ((__ptr_t __ptr)); |
| 17130 | 1092 |
| 1093 /* List of blocks allocated by memalign. */ | |
| 1094 struct alignlist *_aligned_blocks = NULL; | |
| 1095 | |
| 1096 /* Return memory to the heap. | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1097 Like `_free_internal' but don't lock mutex. */ |
| 17130 | 1098 void |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1099 _free_internal_nolock (ptr) |
| 17130 | 1100 __ptr_t ptr; |
| 1101 { | |
| 1102 int type; | |
| 1103 __malloc_size_t block, blocks; | |
| 1104 register __malloc_size_t i; | |
| 1105 struct list *prev, *next; | |
| 1106 __ptr_t curbrk; | |
| 1107 const __malloc_size_t lesscore_threshold | |
| 1108 /* Threshold of free space at which we will return some to the system. */ | |
| 1109 = FINAL_FREE_BLOCKS + 2 * __malloc_extra_blocks; | |
| 1110 | |
| 1111 register struct alignlist *l; | |
| 1112 | |
| 1113 if (ptr == NULL) | |
| 1114 return; | |
| 1115 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1116 PROTECT_MALLOC_STATE (0); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1117 |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1118 LOCK_ALIGNED_BLOCKS (); |
| 17130 | 1119 for (l = _aligned_blocks; l != NULL; l = l->next) |
| 1120 if (l->aligned == ptr) | |
| 1121 { | |
| 1122 l->aligned = NULL; /* Mark the slot in the list as free. */ | |
| 1123 ptr = l->exact; | |
| 1124 break; | |
| 1125 } | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1126 UNLOCK_ALIGNED_BLOCKS (); |
| 17130 | 1127 |
| 1128 block = BLOCK (ptr); | |
| 1129 | |
| 1130 type = _heapinfo[block].busy.type; | |
| 1131 switch (type) | |
| 1132 { | |
| 1133 case 0: | |
| 1134 /* Get as many statistics as early as we can. */ | |
| 1135 --_chunks_used; | |
| 1136 _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE; | |
| 1137 _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE; | |
| 1138 | |
| 1139 /* Find the free cluster previous to this one in the free list. | |
| 1140 Start searching at the last block referenced; this may benefit | |
| 1141 programs with locality of allocation. */ | |
| 1142 i = _heapindex; | |
| 1143 if (i > block) | |
| 1144 while (i > block) | |
| 1145 i = _heapinfo[i].free.prev; | |
| 1146 else | |
| 1147 { | |
| 1148 do | |
| 1149 i = _heapinfo[i].free.next; | |
| 1150 while (i > 0 && i < block); | |
| 1151 i = _heapinfo[i].free.prev; | |
| 1152 } | |
| 1153 | |
| 1154 /* Determine how to link this block into the free list. */ | |
| 1155 if (block == i + _heapinfo[i].free.size) | |
| 1156 { | |
| 1157 /* Coalesce this block with its predecessor. */ | |
| 1158 _heapinfo[i].free.size += _heapinfo[block].busy.info.size; | |
| 1159 block = i; | |
| 1160 } | |
| 1161 else | |
| 1162 { | |
| 1163 /* Really link this block back into the free list. */ | |
| 1164 _heapinfo[block].free.size = _heapinfo[block].busy.info.size; | |
| 1165 _heapinfo[block].free.next = _heapinfo[i].free.next; | |
| 1166 _heapinfo[block].free.prev = i; | |
| 1167 _heapinfo[i].free.next = block; | |
| 1168 _heapinfo[_heapinfo[block].free.next].free.prev = block; | |
| 1169 ++_chunks_free; | |
| 1170 } | |
| 1171 | |
| 1172 /* Now that the block is linked in, see if we can coalesce it | |
| 1173 with its successor (by deleting its successor from the list | |
| 1174 and adding in its size). */ | |
| 1175 if (block + _heapinfo[block].free.size == _heapinfo[block].free.next) | |
| 1176 { | |
| 1177 _heapinfo[block].free.size | |
| 1178 += _heapinfo[_heapinfo[block].free.next].free.size; | |
| 1179 _heapinfo[block].free.next | |
| 1180 = _heapinfo[_heapinfo[block].free.next].free.next; | |
| 1181 _heapinfo[_heapinfo[block].free.next].free.prev = block; | |
| 1182 --_chunks_free; | |
| 1183 } | |
| 1184 | |
| 1185 /* How many trailing free blocks are there now? */ | |
| 1186 blocks = _heapinfo[block].free.size; | |
| 1187 | |
| 1188 /* Where is the current end of accessible core? */ | |
| 1189 curbrk = (*__morecore) (0); | |
| 1190 | |
| 1191 if (_heaplimit != 0 && curbrk == ADDRESS (_heaplimit)) | |
| 1192 { | |
| 1193 /* The end of the malloc heap is at the end of accessible core. | |
| 1194 It's possible that moving _heapinfo will allow us to | |
| 1195 return some space to the system. */ | |
| 1196 | |
| 1197 __malloc_size_t info_block = BLOCK (_heapinfo); | |
| 1198 __malloc_size_t info_blocks = _heapinfo[info_block].busy.info.size; | |
| 1199 __malloc_size_t prev_block = _heapinfo[block].free.prev; | |
| 1200 __malloc_size_t prev_blocks = _heapinfo[prev_block].free.size; | |
| 1201 __malloc_size_t next_block = _heapinfo[block].free.next; | |
| 1202 __malloc_size_t next_blocks = _heapinfo[next_block].free.size; | |
| 1203 | |
| 1204 if (/* Win if this block being freed is last in core, the info table | |
| 1205 is just before it, the previous free block is just before the | |
| 1206 info table, and the two free blocks together form a useful | |
| 1207 amount to return to the system. */ | |
| 1208 (block + blocks == _heaplimit && | |
| 1209 info_block + info_blocks == block && | |
| 1210 prev_block != 0 && prev_block + prev_blocks == info_block && | |
| 1211 blocks + prev_blocks >= lesscore_threshold) || | |
| 1212 /* Nope, not the case. We can also win if this block being | |
| 1213 freed is just before the info table, and the table extends | |
| 1214 to the end of core or is followed only by a free block, | |
| 1215 and the total free space is worth returning to the system. */ | |
| 1216 (block + blocks == info_block && | |
| 1217 ((info_block + info_blocks == _heaplimit && | |
| 1218 blocks >= lesscore_threshold) || | |
| 1219 (info_block + info_blocks == next_block && | |
| 1220 next_block + next_blocks == _heaplimit && | |
| 1221 blocks + next_blocks >= lesscore_threshold))) | |
| 1222 ) | |
| 1223 { | |
| 1224 malloc_info *newinfo; | |
| 1225 __malloc_size_t oldlimit = _heaplimit; | |
| 1226 | |
| 1227 /* Free the old info table, clearing _heaplimit to avoid | |
| 1228 recursion into this code. We don't want to return the | |
| 1229 table's blocks to the system before we have copied them to | |
| 1230 the new location. */ | |
| 1231 _heaplimit = 0; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1232 _free_internal_nolock (_heapinfo); |
| 17130 | 1233 _heaplimit = oldlimit; |
| 1234 | |
| 1235 /* Tell malloc to search from the beginning of the heap for | |
| 1236 free blocks, so it doesn't reuse the ones just freed. */ | |
| 1237 _heapindex = 0; | |
| 1238 | |
| 1239 /* Allocate new space for the info table and move its data. */ | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1240 newinfo = (malloc_info *) _malloc_internal_nolock (info_blocks |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1241 * BLOCKSIZE); |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1242 PROTECT_MALLOC_STATE (0); |
| 17130 | 1243 memmove (newinfo, _heapinfo, info_blocks * BLOCKSIZE); |
| 1244 _heapinfo = newinfo; | |
| 1245 | |
| 1246 /* We should now have coalesced the free block with the | |
| 1247 blocks freed from the old info table. Examine the entire | |
| 1248 trailing free block to decide below whether to return some | |
| 1249 to the system. */ | |
| 1250 block = _heapinfo[0].free.prev; | |
| 1251 blocks = _heapinfo[block].free.size; | |
| 1252 } | |
| 1253 | |
| 1254 /* Now see if we can return stuff to the system. */ | |
| 1255 if (block + blocks == _heaplimit && blocks >= lesscore_threshold) | |
| 1256 { | |
| 1257 register __malloc_size_t bytes = blocks * BLOCKSIZE; | |
| 1258 _heaplimit -= blocks; | |
| 1259 (*__morecore) (-bytes); | |
| 1260 _heapinfo[_heapinfo[block].free.prev].free.next | |
| 1261 = _heapinfo[block].free.next; | |
| 1262 _heapinfo[_heapinfo[block].free.next].free.prev | |
| 1263 = _heapinfo[block].free.prev; | |
| 1264 block = _heapinfo[block].free.prev; | |
| 1265 --_chunks_free; | |
| 1266 _bytes_free -= bytes; | |
| 1267 } | |
| 1268 } | |
| 1269 | |
| 1270 /* Set the next search to begin at this block. */ | |
| 1271 _heapindex = block; | |
| 1272 break; | |
| 1273 | |
| 1274 default: | |
| 1275 /* Do some of the statistics. */ | |
| 1276 --_chunks_used; | |
| 1277 _bytes_used -= 1 << type; | |
| 1278 ++_chunks_free; | |
| 1279 _bytes_free += 1 << type; | |
| 1280 | |
| 1281 /* Get the address of the first free fragment in this block. */ | |
| 1282 prev = (struct list *) ((char *) ADDRESS (block) + | |
| 1283 (_heapinfo[block].busy.info.frag.first << type)); | |
| 1284 | |
| 1285 if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1) | |
| 1286 { | |
| 1287 /* If all fragments of this block are free, remove them | |
| 1288 from the fragment list and free the whole block. */ | |
| 1289 next = prev; | |
| 1290 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> type); ++i) | |
| 1291 next = next->next; | |
| 1292 prev->prev->next = next; | |
| 1293 if (next != NULL) | |
| 1294 next->prev = prev->prev; | |
| 1295 _heapinfo[block].busy.type = 0; | |
| 1296 _heapinfo[block].busy.info.size = 1; | |
| 1297 | |
| 1298 /* Keep the statistics accurate. */ | |
| 1299 ++_chunks_used; | |
| 1300 _bytes_used += BLOCKSIZE; | |
| 1301 _chunks_free -= BLOCKSIZE >> type; | |
| 1302 _bytes_free -= BLOCKSIZE; | |
| 1303 | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1304 #if defined (GC_MALLOC_CHECK) || defined (USE_PTHREAD) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1305 _free_internal_nolock (ADDRESS (block)); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
1306 #else |
| 17130 | 1307 free (ADDRESS (block)); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
1308 #endif |
| 17130 | 1309 } |
| 1310 else if (_heapinfo[block].busy.info.frag.nfree != 0) | |
| 1311 { | |
| 1312 /* If some fragments of this block are free, link this | |
| 1313 fragment into the fragment list after the first free | |
| 1314 fragment of this block. */ | |
| 1315 next = (struct list *) ptr; | |
| 1316 next->next = prev->next; | |
| 1317 next->prev = prev; | |
| 1318 prev->next = next; | |
| 1319 if (next->next != NULL) | |
| 1320 next->next->prev = next; | |
| 1321 ++_heapinfo[block].busy.info.frag.nfree; | |
| 1322 } | |
| 1323 else | |
| 1324 { | |
| 1325 /* No fragments of this block are free, so link this | |
| 1326 fragment into the fragment list and announce that | |
| 1327 it is the first free fragment of this block. */ | |
| 1328 prev = (struct list *) ptr; | |
| 1329 _heapinfo[block].busy.info.frag.nfree = 1; | |
| 1330 _heapinfo[block].busy.info.frag.first = (unsigned long int) | |
| 1331 ((unsigned long int) ((char *) ptr - (char *) NULL) | |
| 1332 % BLOCKSIZE >> type); | |
| 1333 prev->next = _fraghead[type].next; | |
| 1334 prev->prev = &_fraghead[type]; | |
| 1335 prev->prev->next = prev; | |
| 1336 if (prev->next != NULL) | |
| 1337 prev->next->prev = prev; | |
| 1338 } | |
| 1339 break; | |
| 1340 } | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1341 |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1342 PROTECT_MALLOC_STATE (1); |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1343 } |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1344 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1345 /* Return memory to the heap. |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1346 Like `free' but don't call a __free_hook if there is one. */ |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1347 void |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1348 _free_internal (ptr) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1349 __ptr_t ptr; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1350 { |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1351 LOCK (); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1352 _free_internal_nolock (ptr); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
1353 UNLOCK (); |
| 17130 | 1354 } |
| 1355 | |
| 1356 /* Return memory to the heap. */ | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
1357 |
|
91702
b7a5a89054dc
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82335
diff
changeset
|
1358 void |
| 17130 | 1359 free (ptr) |
| 1360 __ptr_t ptr; | |
| 1361 { | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1362 void (*hook) (__ptr_t) = __free_hook; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1363 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1364 if (hook != NULL) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1365 (*hook) (ptr); |
| 17130 | 1366 else |
| 1367 _free_internal (ptr); | |
| 1368 } | |
| 1369 | |
| 1370 /* Define the `cfree' alias for `free'. */ | |
| 1371 #ifdef weak_alias | |
| 1372 weak_alias (free, cfree) | |
| 1373 #else | |
| 1374 void | |
| 1375 cfree (ptr) | |
| 1376 __ptr_t ptr; | |
| 1377 { | |
| 1378 free (ptr); | |
| 1379 } | |
| 1380 #endif | |
| 1381 /* Change the size of a block allocated by `malloc'. | |
| 1382 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
| 1383 Written May 1989 by Mike Haertel. | |
| 1384 | |
| 1385 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1386 modify it under the terms of the GNU General Public License as |
| 17130 | 1387 published by the Free Software Foundation; either version 2 of the |
| 1388 License, or (at your option) any later version. | |
| 1389 | |
| 1390 This library is distributed in the hope that it will be useful, | |
| 1391 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1392 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1393 General Public License for more details. |
| 17130 | 1394 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1395 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1396 License along with this library; see the file COPYING. If |
| 64092 | 1397 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 1398 Fifth Floor, Boston, MA 02110-1301, USA. | |
| 17130 | 1399 |
| 1400 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1401 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1402 | |
| 1403 #ifndef _MALLOC_INTERNAL | |
| 1404 #define _MALLOC_INTERNAL | |
| 1405 #include <malloc.h> | |
| 1406 #endif | |
| 1407 | |
| 1408 | |
| 1409 | |
| 1410 /* Cope with systems lacking `memmove'. */ | |
|
91702
b7a5a89054dc
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82335
diff
changeset
|
1411 #if (!defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG)) |
| 17130 | 1412 |
| 1413 #ifdef emacs | |
| 1414 #undef __malloc_safe_bcopy | |
| 1415 #define __malloc_safe_bcopy safe_bcopy | |
| 1416 #else | |
| 1417 | |
| 1418 /* Snarfed directly from Emacs src/dispnew.c: | |
| 1419 XXX Should use system bcopy if it handles overlap. */ | |
| 1420 | |
| 1421 /* Like bcopy except never gets confused by overlap. */ | |
| 1422 | |
| 1423 void | |
| 1424 __malloc_safe_bcopy (afrom, ato, size) | |
| 1425 __ptr_t afrom; | |
| 1426 __ptr_t ato; | |
| 1427 __malloc_size_t size; | |
| 1428 { | |
| 1429 char *from = afrom, *to = ato; | |
| 1430 | |
| 1431 if (size <= 0 || from == to) | |
| 1432 return; | |
| 1433 | |
| 1434 /* If the source and destination don't overlap, then bcopy can | |
| 1435 handle it. If they do overlap, but the destination is lower in | |
| 1436 memory than the source, we'll assume bcopy can handle that. */ | |
| 1437 if (to < from || from + size <= to) | |
| 1438 bcopy (from, to, size); | |
| 1439 | |
| 1440 /* Otherwise, we'll copy from the end. */ | |
| 1441 else | |
| 1442 { | |
| 1443 register char *endf = from + size; | |
| 1444 register char *endt = to + size; | |
| 1445 | |
| 1446 /* If TO - FROM is large, then we should break the copy into | |
| 1447 nonoverlapping chunks of TO - FROM bytes each. However, if | |
| 1448 TO - FROM is small, then the bcopy function call overhead | |
| 1449 makes this not worth it. The crossover point could be about | |
| 1450 anywhere. Since I don't think the obvious copy loop is too | |
| 1451 bad, I'm trying to err in its favor. */ | |
| 1452 if (to - from < 64) | |
| 1453 { | |
| 1454 do | |
| 1455 *--endt = *--endf; | |
| 1456 while (endf != from); | |
| 1457 } | |
| 1458 else | |
| 1459 { | |
| 1460 for (;;) | |
| 1461 { | |
| 1462 endt -= (to - from); | |
| 1463 endf -= (to - from); | |
| 1464 | |
| 1465 if (endt < to) | |
| 1466 break; | |
| 1467 | |
| 1468 bcopy (endf, endt, to - from); | |
| 1469 } | |
| 1470 | |
| 1471 /* If SIZE wasn't a multiple of TO - FROM, there will be a | |
| 1472 little left over. The amount left over is | |
| 1473 (endt + (to - from)) - to, which is endt - from. */ | |
| 1474 bcopy (from, to, endt - from); | |
| 1475 } | |
| 1476 } | |
| 1477 } | |
| 1478 #endif /* emacs */ | |
| 1479 | |
| 1480 #ifndef memmove | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1481 extern void __malloc_safe_bcopy PP ((__ptr_t, __ptr_t, __malloc_size_t)); |
| 17130 | 1482 #define memmove(to, from, size) __malloc_safe_bcopy ((from), (to), (size)) |
| 1483 #endif | |
| 1484 | |
| 1485 #endif | |
| 1486 | |
| 1487 | |
| 1488 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
| 1489 | |
| 1490 /* Debugging hook for realloc. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1491 __ptr_t (*__realloc_hook) PP ((__ptr_t __ptr, __malloc_size_t __size)); |
| 17130 | 1492 |
| 1493 /* Resize the given region to the new size, returning a pointer | |
| 1494 to the (possibly moved) region. This is optimized for speed; | |
| 1495 some benchmarks seem to indicate that greater compactness is | |
| 1496 achieved by unconditionally allocating and copying to a | |
| 1497 new region. This module has incestuous knowledge of the | |
| 1498 internals of both free and malloc. */ | |
| 1499 __ptr_t | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1500 _realloc_internal_nolock (ptr, size) |
| 17130 | 1501 __ptr_t ptr; |
| 1502 __malloc_size_t size; | |
| 1503 { | |
| 1504 __ptr_t result; | |
| 1505 int type; | |
| 1506 __malloc_size_t block, blocks, oldlimit; | |
| 1507 | |
| 1508 if (size == 0) | |
| 1509 { | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1510 _free_internal_nolock (ptr); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1511 return _malloc_internal_nolock (0); |
| 17130 | 1512 } |
| 1513 else if (ptr == NULL) | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1514 return _malloc_internal_nolock (size); |
| 17130 | 1515 |
| 1516 block = BLOCK (ptr); | |
| 1517 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1518 PROTECT_MALLOC_STATE (0); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1519 |
| 17130 | 1520 type = _heapinfo[block].busy.type; |
| 1521 switch (type) | |
| 1522 { | |
| 1523 case 0: | |
| 1524 /* Maybe reallocate a large block to a small fragment. */ | |
| 1525 if (size <= BLOCKSIZE / 2) | |
| 1526 { | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1527 result = _malloc_internal_nolock (size); |
| 17130 | 1528 if (result != NULL) |
| 1529 { | |
| 1530 memcpy (result, ptr, size); | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1531 _free_internal_nolock (ptr); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
1532 goto out; |
| 17130 | 1533 } |
| 1534 } | |
| 1535 | |
| 1536 /* The new size is a large allocation as well; | |
| 1537 see if we can hold it in place. */ | |
| 1538 blocks = BLOCKIFY (size); | |
| 1539 if (blocks < _heapinfo[block].busy.info.size) | |
| 1540 { | |
| 1541 /* The new size is smaller; return | |
| 1542 excess memory to the free list. */ | |
| 1543 _heapinfo[block + blocks].busy.type = 0; | |
| 1544 _heapinfo[block + blocks].busy.info.size | |
| 1545 = _heapinfo[block].busy.info.size - blocks; | |
| 1546 _heapinfo[block].busy.info.size = blocks; | |
| 1547 /* We have just created a new chunk by splitting a chunk in two. | |
| 1548 Now we will free this chunk; increment the statistics counter | |
| 1549 so it doesn't become wrong when _free_internal decrements it. */ | |
| 1550 ++_chunks_used; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1551 _free_internal_nolock (ADDRESS (block + blocks)); |
| 17130 | 1552 result = ptr; |
| 1553 } | |
| 1554 else if (blocks == _heapinfo[block].busy.info.size) | |
| 1555 /* No size change necessary. */ | |
| 1556 result = ptr; | |
| 1557 else | |
| 1558 { | |
| 1559 /* Won't fit, so allocate a new region that will. | |
| 1560 Free the old region first in case there is sufficient | |
| 1561 adjacent free space to grow without moving. */ | |
| 1562 blocks = _heapinfo[block].busy.info.size; | |
| 1563 /* Prevent free from actually returning memory to the system. */ | |
| 1564 oldlimit = _heaplimit; | |
| 1565 _heaplimit = 0; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1566 _free_internal_nolock (ptr); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1567 result = _malloc_internal_nolock (size); |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1568 PROTECT_MALLOC_STATE (0); |
| 17130 | 1569 if (_heaplimit == 0) |
| 1570 _heaplimit = oldlimit; | |
| 1571 if (result == NULL) | |
| 1572 { | |
| 1573 /* Now we're really in trouble. We have to unfree | |
| 1574 the thing we just freed. Unfortunately it might | |
| 1575 have been coalesced with its neighbors. */ | |
| 1576 if (_heapindex == block) | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1577 (void) _malloc_internal_nolock (blocks * BLOCKSIZE); |
| 17130 | 1578 else |
| 1579 { | |
| 1580 __ptr_t previous | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1581 = _malloc_internal_nolock ((block - _heapindex) * BLOCKSIZE); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1582 (void) _malloc_internal_nolock (blocks * BLOCKSIZE); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1583 _free_internal_nolock (previous); |
| 17130 | 1584 } |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
1585 goto out; |
| 17130 | 1586 } |
| 1587 if (ptr != result) | |
| 1588 memmove (result, ptr, blocks * BLOCKSIZE); | |
| 1589 } | |
| 1590 break; | |
| 1591 | |
| 1592 default: | |
| 1593 /* Old size is a fragment; type is logarithm | |
| 1594 to base two of the fragment size. */ | |
| 1595 if (size > (__malloc_size_t) (1 << (type - 1)) && | |
| 1596 size <= (__malloc_size_t) (1 << type)) | |
| 1597 /* The new size is the same kind of fragment. */ | |
| 1598 result = ptr; | |
| 1599 else | |
| 1600 { | |
| 1601 /* The new size is different; allocate a new space, | |
| 1602 and copy the lesser of the new size and the old. */ | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1603 result = _malloc_internal_nolock (size); |
| 17130 | 1604 if (result == NULL) |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
1605 goto out; |
| 17130 | 1606 memcpy (result, ptr, min (size, (__malloc_size_t) 1 << type)); |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1607 _free_internal_nolock (ptr); |
| 17130 | 1608 } |
| 1609 break; | |
| 1610 } | |
| 1611 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1612 PROTECT_MALLOC_STATE (1); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
1613 out: |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1614 return result; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1615 } |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1616 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1617 __ptr_t |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1618 _realloc_internal (ptr, size) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1619 __ptr_t ptr; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1620 __malloc_size_t size; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1621 { |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1622 __ptr_t result; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1623 |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1624 LOCK(); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1625 result = _realloc_internal_nolock (ptr, size); |
|
76776
2bb28b957639
[HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
75348
diff
changeset
|
1626 UNLOCK (); |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1627 |
| 17130 | 1628 return result; |
| 1629 } | |
| 1630 | |
| 1631 __ptr_t | |
| 1632 realloc (ptr, size) | |
| 1633 __ptr_t ptr; | |
| 1634 __malloc_size_t size; | |
| 1635 { | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1636 __ptr_t (*hook) (__ptr_t, __malloc_size_t); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1637 |
| 17130 | 1638 if (!__malloc_initialized && !__malloc_initialize ()) |
| 1639 return NULL; | |
| 1640 | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1641 hook = __realloc_hook; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1642 return (hook != NULL ? *hook : _realloc_internal) (ptr, size); |
| 17130 | 1643 } |
| 1644 /* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc. | |
| 1645 | |
| 1646 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1647 modify it under the terms of the GNU General Public License as |
| 17130 | 1648 published by the Free Software Foundation; either version 2 of the |
| 1649 License, or (at your option) any later version. | |
| 1650 | |
| 1651 This library is distributed in the hope that it will be useful, | |
| 1652 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1653 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1654 General Public License for more details. |
| 17130 | 1655 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1656 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1657 License along with this library; see the file COPYING. If |
| 64092 | 1658 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 1659 Fifth Floor, Boston, MA 02110-1301, USA. | |
| 17130 | 1660 |
| 1661 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1662 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1663 | |
| 1664 #ifndef _MALLOC_INTERNAL | |
| 1665 #define _MALLOC_INTERNAL | |
| 1666 #include <malloc.h> | |
| 1667 #endif | |
| 1668 | |
| 1669 /* Allocate an array of NMEMB elements each SIZE bytes long. | |
| 1670 The entire array is initialized to zeros. */ | |
| 1671 __ptr_t | |
| 1672 calloc (nmemb, size) | |
| 1673 register __malloc_size_t nmemb; | |
| 1674 register __malloc_size_t size; | |
| 1675 { | |
| 1676 register __ptr_t result = malloc (nmemb * size); | |
| 1677 | |
| 1678 if (result != NULL) | |
| 1679 (void) memset (result, 0, nmemb * size); | |
| 1680 | |
| 1681 return result; | |
| 1682 } | |
| 1683 /* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
| 1684 This file is part of the GNU C Library. | |
| 1685 | |
| 1686 The GNU C Library is free software; you can redistribute it and/or modify | |
| 1687 it under the terms of the GNU General Public License as published by | |
| 1688 the Free Software Foundation; either version 2, or (at your option) | |
| 1689 any later version. | |
| 1690 | |
| 1691 The GNU C Library is distributed in the hope that it will be useful, | |
| 1692 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1693 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 1694 GNU General Public License for more details. | |
| 1695 | |
| 1696 You should have received a copy of the GNU General Public License | |
| 1697 along with the GNU C Library; see the file COPYING. If not, write to | |
| 64092 | 1698 the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, |
| 1699 MA 02110-1301, USA. */ | |
| 17130 | 1700 |
| 1701 #ifndef _MALLOC_INTERNAL | |
| 1702 #define _MALLOC_INTERNAL | |
| 1703 #include <malloc.h> | |
| 1704 #endif | |
| 1705 | |
|
98455
876b289a899e
* gmalloc.c (__sbrk): Also define for uClibc.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95236
diff
changeset
|
1706 /* uClibc defines __GNU_LIBRARY__, but it is not completely |
|
876b289a899e
* gmalloc.c (__sbrk): Also define for uClibc.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95236
diff
changeset
|
1707 compatible. */ |
|
876b289a899e
* gmalloc.c (__sbrk): Also define for uClibc.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95236
diff
changeset
|
1708 #if !defined(__GNU_LIBRARY__) || defined(__UCLIBC__) |
| 17130 | 1709 #define __sbrk sbrk |
|
98455
876b289a899e
* gmalloc.c (__sbrk): Also define for uClibc.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95236
diff
changeset
|
1710 #else /* __GNU_LIBRARY__ && ! defined (__UCLIBC__) */ |
| 17130 | 1711 /* It is best not to declare this and cast its result on foreign operating |
| 1712 systems with potentially hostile include files. */ | |
| 1713 | |
| 1714 #include <stddef.h> | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1715 extern __ptr_t __sbrk PP ((ptrdiff_t increment)); |
|
98455
876b289a899e
* gmalloc.c (__sbrk): Also define for uClibc.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95236
diff
changeset
|
1716 #endif /* __GNU_LIBRARY__ && ! defined (__UCLIBC__) */ |
| 17130 | 1717 |
| 1718 #ifndef NULL | |
| 1719 #define NULL 0 | |
| 1720 #endif | |
| 1721 | |
| 1722 /* Allocate INCREMENT more bytes of data space, | |
| 1723 and return the start of data space, or NULL on errors. | |
| 1724 If INCREMENT is negative, shrink data space. */ | |
| 1725 __ptr_t | |
| 1726 __default_morecore (increment) | |
| 1727 __malloc_ptrdiff_t increment; | |
| 1728 { | |
|
54824
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1729 __ptr_t result; |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1730 #if defined(CYGWIN) |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1731 if (!bss_sbrk_did_unexec) |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1732 { |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1733 return bss_sbrk (increment); |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1734 } |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1735 #endif |
|
54395b0b6779
(__default_morecore): Use bss_sbrk(), not __sbrk(), before Cygwin unexec.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1736 result = (__ptr_t) __sbrk (increment); |
| 17130 | 1737 if (result == (__ptr_t) -1) |
| 1738 return NULL; | |
| 1739 return result; | |
| 1740 } | |
| 1741 /* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc. | |
| 1742 | |
| 1743 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1744 modify it under the terms of the GNU General Public License as |
| 17130 | 1745 published by the Free Software Foundation; either version 2 of the |
| 1746 License, or (at your option) any later version. | |
| 1747 | |
| 1748 This library is distributed in the hope that it will be useful, | |
| 1749 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1750 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1751 General Public License for more details. |
| 17130 | 1752 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1753 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1754 License along with this library; see the file COPYING. If |
| 64092 | 1755 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 1756 Fifth Floor, Boston, MA 02110-1301, USA. */ | |
| 17130 | 1757 |
| 1758 #ifndef _MALLOC_INTERNAL | |
| 1759 #define _MALLOC_INTERNAL | |
| 1760 #include <malloc.h> | |
| 1761 #endif | |
| 1762 | |
|
37372
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
1763 __ptr_t (*__memalign_hook) PP ((__malloc_size_t __size, |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
1764 __malloc_size_t __alignment)); |
| 17130 | 1765 |
| 1766 __ptr_t | |
| 1767 memalign (alignment, size) | |
| 1768 __malloc_size_t alignment; | |
| 1769 __malloc_size_t size; | |
| 1770 { | |
| 1771 __ptr_t result; | |
| 1772 unsigned long int adj, lastadj; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1773 __ptr_t (*hook) (__malloc_size_t, __malloc_size_t) = __memalign_hook; |
| 17130 | 1774 |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1775 if (hook) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1776 return (*hook) (alignment, size); |
| 17130 | 1777 |
| 1778 /* Allocate a block with enough extra space to pad the block with up to | |
| 1779 (ALIGNMENT - 1) bytes if necessary. */ | |
| 1780 result = malloc (size + alignment - 1); | |
| 1781 if (result == NULL) | |
| 1782 return NULL; | |
| 1783 | |
| 1784 /* Figure out how much we will need to pad this particular block | |
| 1785 to achieve the required alignment. */ | |
| 1786 adj = (unsigned long int) ((char *) result - (char *) NULL) % alignment; | |
| 1787 | |
| 1788 do | |
| 1789 { | |
| 1790 /* Reallocate the block with only as much excess as it needs. */ | |
| 1791 free (result); | |
| 1792 result = malloc (adj + size); | |
| 1793 if (result == NULL) /* Impossible unless interrupted. */ | |
| 1794 return NULL; | |
| 1795 | |
| 1796 lastadj = adj; | |
| 1797 adj = (unsigned long int) ((char *) result - (char *) NULL) % alignment; | |
| 1798 /* It's conceivable we might have been so unlucky as to get a | |
| 1799 different block with weaker alignment. If so, this block is too | |
| 1800 short to contain SIZE after alignment correction. So we must | |
| 1801 try again and get another block, slightly larger. */ | |
| 1802 } while (adj > lastadj); | |
| 1803 | |
| 1804 if (adj != 0) | |
| 1805 { | |
| 1806 /* Record this block in the list of aligned blocks, so that `free' | |
| 1807 can identify the pointer it is passed, which will be in the middle | |
| 1808 of an allocated block. */ | |
| 1809 | |
| 1810 struct alignlist *l; | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1811 LOCK_ALIGNED_BLOCKS (); |
| 17130 | 1812 for (l = _aligned_blocks; l != NULL; l = l->next) |
| 1813 if (l->aligned == NULL) | |
| 1814 /* This slot is free. Use it. */ | |
| 1815 break; | |
| 1816 if (l == NULL) | |
| 1817 { | |
| 1818 l = (struct alignlist *) malloc (sizeof (struct alignlist)); | |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1819 if (l != NULL) |
| 17130 | 1820 { |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1821 l->next = _aligned_blocks; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1822 _aligned_blocks = l; |
| 17130 | 1823 } |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1824 } |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1825 if (l != NULL) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1826 { |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1827 l->exact = result; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1828 result = l->aligned = (char *) result + alignment - adj; |
| 17130 | 1829 } |
|
81615
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1830 UNLOCK_ALIGNED_BLOCKS (); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1831 if (l == NULL) |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1832 { |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1833 free (result); |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1834 result = NULL; |
|
059caeb1f502
[HAVE_GTK_AND_PTHREAD] Check this after including config.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
81500
diff
changeset
|
1835 } |
| 17130 | 1836 } |
| 1837 | |
| 1838 return result; | |
| 1839 } | |
| 1840 | |
|
82335
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1841 #ifndef ENOMEM |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1842 #define ENOMEM 12 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1843 #endif |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1844 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1845 #ifndef EINVAL |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1846 #define EINVAL 22 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1847 #endif |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1848 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1849 int |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1850 posix_memalign (memptr, alignment, size) |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1851 __ptr_t *memptr; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1852 __malloc_size_t alignment; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1853 __malloc_size_t size; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1854 { |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1855 __ptr_t mem; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1856 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1857 if (alignment == 0 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1858 || alignment % sizeof (__ptr_t) != 0 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1859 || (alignment & (alignment - 1)) != 0) |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1860 return EINVAL; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1861 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1862 mem = memalign (alignment, size); |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1863 if (mem == NULL) |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1864 return ENOMEM; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1865 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1866 *memptr = mem; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1867 |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1868 return 0; |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1869 } |
|
310b4cdcc703
(posix_memalign): New function.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
82308
diff
changeset
|
1870 |
| 17130 | 1871 /* Allocate memory on a page boundary. |
| 1872 Copyright (C) 1991, 92, 93, 94, 96 Free Software Foundation, Inc. | |
| 1873 | |
| 1874 This library is free software; you can redistribute it and/or | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1875 modify it under the terms of the GNU General Public License as |
| 17130 | 1876 published by the Free Software Foundation; either version 2 of the |
| 1877 License, or (at your option) any later version. | |
| 1878 | |
| 1879 This library is distributed in the hope that it will be useful, | |
| 1880 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1881 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1882 General Public License for more details. |
| 17130 | 1883 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1884 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1885 License along with this library; see the file COPYING. If |
| 64092 | 1886 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 1887 Fifth Floor, Boston, MA 02110-1301, USA. | |
| 17130 | 1888 |
| 1889 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1890 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1891 | |
| 1892 #if defined (_MALLOC_INTERNAL) && defined (GMALLOC_INHIBIT_VALLOC) | |
| 1893 | |
| 1894 /* Emacs defines GMALLOC_INHIBIT_VALLOC to avoid this definition | |
| 1895 on MSDOS, where it conflicts with a system header file. */ | |
| 1896 | |
| 1897 #define ELIDE_VALLOC | |
| 1898 | |
| 1899 #endif | |
| 1900 | |
| 1901 #ifndef ELIDE_VALLOC | |
| 1902 | |
| 1903 #if defined (__GNU_LIBRARY__) || defined (_LIBC) | |
| 1904 #include <stddef.h> | |
| 1905 #include <sys/cdefs.h> | |
|
17131
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1906 #if defined (__GLIBC__) && __GLIBC__ >= 2 |
|
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1907 /* __getpagesize is already declared in <unistd.h> with return type int */ |
|
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1908 #else |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1909 extern size_t __getpagesize PP ((void)); |
|
17131
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1910 #endif |
| 17130 | 1911 #else |
| 1912 #include "getpagesize.h" | |
| 1913 #define __getpagesize() getpagesize() | |
| 1914 #endif | |
| 1915 | |
| 1916 #ifndef _MALLOC_INTERNAL | |
| 1917 #define _MALLOC_INTERNAL | |
| 1918 #include <malloc.h> | |
| 1919 #endif | |
| 1920 | |
| 1921 static __malloc_size_t pagesize; | |
| 1922 | |
| 1923 __ptr_t | |
| 1924 valloc (size) | |
| 1925 __malloc_size_t size; | |
| 1926 { | |
| 1927 if (pagesize == 0) | |
| 1928 pagesize = __getpagesize (); | |
| 1929 | |
| 1930 return memalign (pagesize, size); | |
| 1931 } | |
| 1932 | |
| 1933 #endif /* Not ELIDE_VALLOC. */ | |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1934 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1935 #ifdef GC_MCHECK |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1936 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1937 /* Standard debugging hooks for `malloc'. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1938 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1939 Written May 1989 by Mike Haertel. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1940 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1941 This library is free software; you can redistribute it and/or |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1942 modify it under the terms of the GNU General Public License as |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1943 published by the Free Software Foundation; either version 2 of the |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1944 License, or (at your option) any later version. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1945 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1946 This library is distributed in the hope that it will be useful, |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1947 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1948 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1949 General Public License for more details. |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1950 |
|
72951
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1951 You should have received a copy of the GNU General Public |
|
751c24f0ec88
Replace "GNU Library General Public License" by "GNU General Public
Jay Belanger <jay.p.belanger@gmail.com>
parents:
68651
diff
changeset
|
1952 License along with this library; see the file COPYING. If |
| 64092 | 1953 not, write to the Free Software Foundation, Inc., 51 Franklin Street, |
| 1954 Fifth Floor, Boston, MA 02110-1301, USA. | |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1955 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1956 The author may be reached (Email) at the address mike@ai.mit.edu, |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1957 or (US mail) as Mike Haertel c/o Free Software Foundation. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1958 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1959 #ifdef emacs |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1960 #include <stdio.h> |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1961 #else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1962 #ifndef _MALLOC_INTERNAL |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1963 #define _MALLOC_INTERNAL |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1964 #include <malloc.h> |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1965 #include <stdio.h> |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1966 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1967 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1968 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1969 /* Old hook values. */ |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
1970 static void (*old_free_hook) (__ptr_t ptr); |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
1971 static __ptr_t (*old_malloc_hook) (__malloc_size_t size); |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
1972 static __ptr_t (*old_realloc_hook) (__ptr_t ptr, __malloc_size_t size); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1973 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1974 /* Function to call when something awful happens. */ |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
1975 static void (*abortfunc) (enum mcheck_status); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1976 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1977 /* Arbitrary magical numbers. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1978 #define MAGICWORD 0xfedabeeb |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1979 #define MAGICFREE 0xd8675309 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1980 #define MAGICBYTE ((char) 0xd7) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1981 #define MALLOCFLOOD ((char) 0x93) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1982 #define FREEFLOOD ((char) 0x95) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1983 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1984 struct hdr |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1985 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1986 __malloc_size_t size; /* Exact size requested by user. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1987 unsigned long int magic; /* Magic number to check header integrity. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1988 }; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1989 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1990 #if defined(_LIBC) || defined(STDC_HEADERS) || defined(USG) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1991 #define flood memset |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1992 #else |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
1993 static void flood (__ptr_t, int, __malloc_size_t); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1994 static void |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1995 flood (ptr, val, size) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1996 __ptr_t ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1997 int val; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1998 __malloc_size_t size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1999 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2000 char *cp = ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2001 while (size--) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2002 *cp++ = val; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2003 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2004 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2005 |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
2006 static enum mcheck_status checkhdr (const struct hdr *); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2007 static enum mcheck_status |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2008 checkhdr (hdr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2009 const struct hdr *hdr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2010 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2011 enum mcheck_status status; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2012 switch (hdr->magic) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2013 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2014 default: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2015 status = MCHECK_HEAD; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2016 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2017 case MAGICFREE: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2018 status = MCHECK_FREE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2019 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2020 case MAGICWORD: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2021 if (((char *) &hdr[1])[hdr->size] != MAGICBYTE) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2022 status = MCHECK_TAIL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2023 else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2024 status = MCHECK_OK; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2025 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2026 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2027 if (status != MCHECK_OK) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2028 (*abortfunc) (status); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2029 return status; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2030 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2031 |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
2032 static void freehook (__ptr_t); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2033 static void |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2034 freehook (ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2035 __ptr_t ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2036 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2037 struct hdr *hdr; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
2038 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2039 if (ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2040 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2041 hdr = ((struct hdr *) ptr) - 1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2042 checkhdr (hdr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2043 hdr->magic = MAGICFREE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2044 flood (ptr, FREEFLOOD, hdr->size); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2045 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2046 else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2047 hdr = NULL; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
2048 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2049 __free_hook = old_free_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2050 free (hdr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2051 __free_hook = freehook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2052 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2053 |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
2054 static __ptr_t mallochook (__malloc_size_t); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2055 static __ptr_t |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2056 mallochook (size) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2057 __malloc_size_t size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2058 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2059 struct hdr *hdr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2060 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2061 __malloc_hook = old_malloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2062 hdr = (struct hdr *) malloc (sizeof (struct hdr) + size + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2063 __malloc_hook = mallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2064 if (hdr == NULL) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2065 return NULL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2066 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2067 hdr->size = size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2068 hdr->magic = MAGICWORD; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2069 ((char *) &hdr[1])[size] = MAGICBYTE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2070 flood ((__ptr_t) (hdr + 1), MALLOCFLOOD, size); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2071 return (__ptr_t) (hdr + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2072 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2073 |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
2074 static __ptr_t reallochook (__ptr_t, __malloc_size_t); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2075 static __ptr_t |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2076 reallochook (ptr, size) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2077 __ptr_t ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2078 __malloc_size_t size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2079 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2080 struct hdr *hdr = NULL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2081 __malloc_size_t osize = 0; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
2082 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2083 if (ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2084 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2085 hdr = ((struct hdr *) ptr) - 1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2086 osize = hdr->size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2087 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2088 checkhdr (hdr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2089 if (size < osize) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2090 flood ((char *) ptr + size, FREEFLOOD, osize - size); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2091 } |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
2092 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2093 __free_hook = old_free_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2094 __malloc_hook = old_malloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2095 __realloc_hook = old_realloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2096 hdr = (struct hdr *) realloc ((__ptr_t) hdr, sizeof (struct hdr) + size + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2097 __free_hook = freehook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2098 __malloc_hook = mallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2099 __realloc_hook = reallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2100 if (hdr == NULL) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2101 return NULL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2102 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2103 hdr->size = size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2104 hdr->magic = MAGICWORD; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2105 ((char *) &hdr[1])[size] = MAGICBYTE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2106 if (size > osize) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2107 flood ((char *) (hdr + 1) + osize, MALLOCFLOOD, size - osize); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2108 return (__ptr_t) (hdr + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2109 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2110 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2111 static void |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2112 mabort (status) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2113 enum mcheck_status status; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2114 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2115 const char *msg; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2116 switch (status) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2117 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2118 case MCHECK_OK: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2119 msg = "memory is consistent, library is buggy"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2120 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2121 case MCHECK_HEAD: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2122 msg = "memory clobbered before allocated block"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2123 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2124 case MCHECK_TAIL: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2125 msg = "memory clobbered past end of allocated block"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2126 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2127 case MCHECK_FREE: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2128 msg = "block freed twice"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2129 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2130 default: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2131 msg = "bogus mcheck_status, library is buggy"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2132 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2133 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2134 #ifdef __GNU_LIBRARY__ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2135 __libc_fatal (msg); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2136 #else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2137 fprintf (stderr, "mcheck: %s\n", msg); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2138 fflush (stderr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2139 abort (); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2140 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2141 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2142 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2143 static int mcheck_used = 0; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2144 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2145 int |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2146 mcheck (func) |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
108860
diff
changeset
|
2147 void (*func) (enum mcheck_status); |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2148 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2149 abortfunc = (func != NULL) ? func : &mabort; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2150 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2151 /* These hooks may not be safely inserted if malloc is already in use. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2152 if (!__malloc_initialized && !mcheck_used) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2153 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2154 old_free_hook = __free_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2155 __free_hook = freehook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2156 old_malloc_hook = __malloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2157 __malloc_hook = mallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2158 old_realloc_hook = __realloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2159 __realloc_hook = reallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2160 mcheck_used = 1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2161 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2162 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2163 return mcheck_used ? 0 : -1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2164 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2165 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2166 enum mcheck_status |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2167 mprobe (__ptr_t ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2168 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2169 return mcheck_used ? checkhdr (ptr) : MCHECK_DISABLED; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2170 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2171 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
2172 #endif /* GC_MCHECK */ |
| 52401 | 2173 |
