[xbuild] Reset ConsoleLogger when a build finishes.
[mono-project.git] / libgc / include / gc.h
blobd77de303e0d5e69193214b20d8dabcba1ad847d1
1 /*
2 * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
3 * Copyright (c) 1991-1995 by Xerox Corporation. All rights reserved.
4 * Copyright 1996-1999 by Silicon Graphics. All rights reserved.
5 * Copyright 1999 by Hewlett-Packard Company. All rights reserved.
7 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
10 * Permission is hereby granted to use or copy this program
11 * for any purpose, provided the above notices are retained on all copies.
12 * Permission to modify the code and to distribute modified code is granted,
13 * provided the above notices are retained, and a notice that the code was
14 * modified is included with the above copyright notice.
18 * Note that this defines a large number of tuning hooks, which can
19 * safely be ignored in nearly all cases. For normal use it suffices
20 * to call only GC_MALLOC and perhaps GC_REALLOC.
21 * For better performance, also look at GC_MALLOC_ATOMIC, and
22 * GC_enable_incremental. If you need an action to be performed
23 * immediately before an object is collected, look at GC_register_finalizer.
24 * If you are using Solaris threads, look at the end of this file.
25 * Everything else is best ignored unless you encounter performance
26 * problems.
29 #ifndef _GC_H
31 # define _GC_H
33 # include "gc_config_macros.h"
35 # if defined(__STDC__) || defined(__cplusplus) || defined(_AIX)
36 # define GC_PROTO(args) args
37 typedef void * GC_PTR;
38 # define GC_CONST const
39 # else
40 # define GC_PROTO(args) ()
41 typedef char * GC_PTR;
42 # define GC_CONST
43 # endif
45 # ifdef __cplusplus
46 extern "C" {
47 # endif
50 /* Define word and signed_word to be unsigned and signed types of the */
51 /* size as char * or void *. There seems to be no way to do this */
52 /* even semi-portably. The following is probably no better/worse */
53 /* than almost anything else. */
54 /* The ANSI standard suggests that size_t and ptr_diff_t might be */
55 /* better choices. But those had incorrect definitions on some older */
56 /* systems. Notably "typedef int size_t" is WRONG. */
57 #ifndef _WIN64
58 typedef unsigned long GC_word;
59 typedef long GC_signed_word;
60 #else
61 /* Win64 isn't really supported yet, but this is the first step. And */
62 /* it might cause error messages to show up in more plausible places. */
63 /* This needs basetsd.h, which is included by windows.h. */
64 typedef unsigned __int64 GC_word;
65 typedef __int64 GC_signed_word;
66 #endif
68 /* Public read-only variables */
70 GC_API GC_word GC_gc_no;/* Counter incremented per collection. */
71 /* Includes empty GCs at startup. */
73 GC_API int GC_parallel; /* GC is parallelized for performance on */
74 /* multiprocessors. Currently set only */
75 /* implicitly if collector is built with */
76 /* -DPARALLEL_MARK and if either: */
77 /* Env variable GC_NPROC is set to > 1, or */
78 /* GC_NPROC is not set and this is an MP. */
79 /* If GC_parallel is set, incremental */
80 /* collection is only partially functional, */
81 /* and may not be desirable. */
84 /* Public R/W variables */
86 GC_API GC_PTR (*GC_oom_fn) GC_PROTO((size_t bytes_requested));
87 /* When there is insufficient memory to satisfy */
88 /* an allocation request, we return */
89 /* (*GC_oom_fn)(). By default this just */
90 /* returns 0. */
91 /* If it returns, it must return 0 or a valid */
92 /* pointer to a previously allocated heap */
93 /* object. */
95 typedef enum {
96 GC_EVENT_START,
97 GC_EVENT_MARK_START,
98 GC_EVENT_MARK_END,
99 GC_EVENT_RECLAIM_START,
100 GC_EVENT_RECLAIM_END,
101 GC_EVENT_END,
102 GC_EVENT_PRE_STOP_WORLD,
103 GC_EVENT_POST_STOP_WORLD,
104 GC_EVENT_PRE_START_WORLD,
105 GC_EVENT_POST_START_WORLD
106 } GCEventType;
108 GC_API void (*GC_notify_event) GC_PROTO((GCEventType event_type));
109 /* Invoked at specific points during every collection.
112 GC_API void (*GC_on_heap_resize) GC_PROTO((size_t new_size));
113 /* Invoked when the heap grows or shrinks */
115 GC_API int GC_find_leak;
116 /* Do not actually garbage collect, but simply */
117 /* report inaccessible memory that was not */
118 /* deallocated with GC_free. Initial value */
119 /* is determined by FIND_LEAK macro. */
121 GC_API int GC_all_interior_pointers;
122 /* Arrange for pointers to object interiors to */
123 /* be recognized as valid. May not be changed */
124 /* after GC initialization. */
125 /* Initial value is determined by */
126 /* -DALL_INTERIOR_POINTERS. */
127 /* Unless DONT_ADD_BYTE_AT_END is defined, this */
128 /* also affects whether sizes are increased by */
129 /* at least a byte to allow "off the end" */
130 /* pointer recognition. */
131 /* MUST BE 0 or 1. */
133 GC_API int GC_quiet; /* Disable statistics output. Only matters if */
134 /* collector has been compiled with statistics */
135 /* enabled. This involves a performance cost, */
136 /* and is thus not the default. */
138 GC_API int GC_finalize_on_demand;
139 /* If nonzero, finalizers will only be run in */
140 /* response to an explicit GC_invoke_finalizers */
141 /* call. The default is determined by whether */
142 /* the FINALIZE_ON_DEMAND macro is defined */
143 /* when the collector is built. */
145 GC_API int GC_java_finalization;
146 /* Mark objects reachable from finalizable */
147 /* objects in a separate postpass. This makes */
148 /* it a bit safer to use non-topologically- */
149 /* ordered finalization. Default value is */
150 /* determined by JAVA_FINALIZATION macro. */
152 GC_API void (* GC_finalizer_notifier)(void);
153 /* Invoked by the collector when there are */
154 /* objects to be finalized. Invoked at most */
155 /* once per GC cycle. Never invoked unless */
156 /* GC_finalize_on_demand is set. */
157 /* Typically this will notify a finalization */
158 /* thread, which will call GC_invoke_finalizers */
159 /* in response. */
161 GC_API int GC_dont_gc; /* != 0 ==> Dont collect. In versions 6.2a1+, */
162 /* this overrides explicit GC_gcollect() calls. */
163 /* Used as a counter, so that nested enabling */
164 /* and disabling work correctly. Should */
165 /* normally be updated with GC_enable() and */
166 /* GC_disable() calls. */
167 /* Direct assignment to GC_dont_gc is */
168 /* deprecated. */
170 GC_API int GC_dont_expand;
171 /* Dont expand heap unless explicitly requested */
172 /* or forced to. */
174 GC_API int GC_use_entire_heap;
175 /* Causes the nonincremental collector to use the */
176 /* entire heap before collecting. This was the only */
177 /* option for GC versions < 5.0. This sometimes */
178 /* results in more large block fragmentation, since */
179 /* very larg blocks will tend to get broken up */
180 /* during each GC cycle. It is likely to result in a */
181 /* larger working set, but lower collection */
182 /* frequencies, and hence fewer instructions executed */
183 /* in the collector. */
185 GC_API int GC_full_freq; /* Number of partial collections between */
186 /* full collections. Matters only if */
187 /* GC_incremental is set. */
188 /* Full collections are also triggered if */
189 /* the collector detects a substantial */
190 /* increase in the number of in-use heap */
191 /* blocks. Values in the tens are now */
192 /* perfectly reasonable, unlike for */
193 /* earlier GC versions. */
195 GC_API GC_word GC_non_gc_bytes;
196 /* Bytes not considered candidates for collection. */
197 /* Used only to control scheduling of collections. */
198 /* Updated by GC_malloc_uncollectable and GC_free. */
199 /* Wizards only. */
201 GC_API int GC_no_dls;
202 /* Don't register dynamic library data segments. */
203 /* Wizards only. Should be used only if the */
204 /* application explicitly registers all roots. */
205 /* In Microsoft Windows environments, this will */
206 /* usually also prevent registration of the */
207 /* main data segment as part of the root set. */
209 GC_API GC_word GC_free_space_divisor;
210 /* We try to make sure that we allocate at */
211 /* least N/GC_free_space_divisor bytes between */
212 /* collections, where N is the heap size plus */
213 /* a rough estimate of the root set size. */
214 /* Initially, GC_free_space_divisor = 3. */
215 /* Increasing its value will use less space */
216 /* but more collection time. Decreasing it */
217 /* will appreciably decrease collection time */
218 /* at the expense of space. */
219 /* GC_free_space_divisor = 1 will effectively */
220 /* disable collections. */
222 GC_API GC_word GC_max_retries;
223 /* The maximum number of GCs attempted before */
224 /* reporting out of memory after heap */
225 /* expansion fails. Initially 0. */
228 GC_API char *GC_stackbottom; /* Cool end of user stack. */
229 /* May be set in the client prior to */
230 /* calling any GC_ routines. This */
231 /* avoids some overhead, and */
232 /* potentially some signals that can */
233 /* confuse debuggers. Otherwise the */
234 /* collector attempts to set it */
235 /* automatically. */
236 /* For multithreaded code, this is the */
237 /* cold end of the stack for the */
238 /* primordial thread. */
240 GC_API int GC_dont_precollect; /* Don't collect as part of */
241 /* initialization. Should be set only */
242 /* if the client wants a chance to */
243 /* manually initialize the root set */
244 /* before the first collection. */
245 /* Interferes with blacklisting. */
246 /* Wizards only. */
248 GC_API unsigned long GC_time_limit;
249 /* If incremental collection is enabled, */
250 /* We try to terminate collections */
251 /* after this many milliseconds. Not a */
252 /* hard time bound. Setting this to */
253 /* GC_TIME_UNLIMITED will essentially */
254 /* disable incremental collection while */
255 /* leaving generational collection */
256 /* enabled. */
257 # define GC_TIME_UNLIMITED 999999
258 /* Setting GC_time_limit to this value */
259 /* will disable the "pause time exceeded"*/
260 /* tests. */
262 /* Public procedures */
264 /* Initialize the collector. This is only required when using thread-local
265 * allocation, since unlike the regular allocation routines, GC_local_malloc
266 * is not self-initializing. If you use GC_local_malloc you should arrange
267 * to call this somehow (e.g. from a constructor) before doing any allocation.
268 * For win32 threads, it needs to be called explicitly.
270 GC_API void GC_init GC_PROTO((void));
273 * general purpose allocation routines, with roughly malloc calling conv.
274 * The atomic versions promise that no relevant pointers are contained
275 * in the object. The nonatomic versions guarantee that the new object
276 * is cleared. GC_malloc_stubborn promises that no changes to the object
277 * will occur after GC_end_stubborn_change has been called on the
278 * result of GC_malloc_stubborn. GC_malloc_uncollectable allocates an object
279 * that is scanned for pointers to collectable objects, but is not itself
280 * collectable. The object is scanned even if it does not appear to
281 * be reachable. GC_malloc_uncollectable and GC_free called on the resulting
282 * object implicitly update GC_non_gc_bytes appropriately.
284 * Note that the GC_malloc_stubborn support is stubbed out by default
285 * starting in 6.0. GC_malloc_stubborn is an alias for GC_malloc unless
286 * the collector is built with STUBBORN_ALLOC defined.
288 GC_API GC_PTR GC_malloc GC_PROTO((size_t size_in_bytes));
289 GC_API GC_PTR GC_malloc_atomic GC_PROTO((size_t size_in_bytes));
290 GC_API GC_PTR GC_malloc_uncollectable GC_PROTO((size_t size_in_bytes));
291 GC_API GC_PTR GC_malloc_stubborn GC_PROTO((size_t size_in_bytes));
293 /* The following is only defined if the library has been suitably */
294 /* compiled: */
295 GC_API GC_PTR GC_malloc_atomic_uncollectable GC_PROTO((size_t size_in_bytes));
297 /* Explicitly deallocate an object. Dangerous if used incorrectly. */
298 /* Requires a pointer to the base of an object. */
299 /* If the argument is stubborn, it should not be changeable when freed. */
300 /* An object should not be enable for finalization when it is */
301 /* explicitly deallocated. */
302 /* GC_free(0) is a no-op, as required by ANSI C for free. */
303 GC_API void GC_free GC_PROTO((GC_PTR object_addr));
306 * Stubborn objects may be changed only if the collector is explicitly informed.
307 * The collector is implicitly informed of coming change when such
308 * an object is first allocated. The following routines inform the
309 * collector that an object will no longer be changed, or that it will
310 * once again be changed. Only nonNIL pointer stores into the object
311 * are considered to be changes. The argument to GC_end_stubborn_change
312 * must be exacly the value returned by GC_malloc_stubborn or passed to
313 * GC_change_stubborn. (In the second case it may be an interior pointer
314 * within 512 bytes of the beginning of the objects.)
315 * There is a performance penalty for allowing more than
316 * one stubborn object to be changed at once, but it is acceptable to
317 * do so. The same applies to dropping stubborn objects that are still
318 * changeable.
320 GC_API void GC_change_stubborn GC_PROTO((GC_PTR));
321 GC_API void GC_end_stubborn_change GC_PROTO((GC_PTR));
323 /* Return a pointer to the base (lowest address) of an object given */
324 /* a pointer to a location within the object. */
325 /* I.e. map an interior pointer to the corresponding bas pointer. */
326 /* Note that with debugging allocation, this returns a pointer to the */
327 /* actual base of the object, i.e. the debug information, not to */
328 /* the base of the user object. */
329 /* Return 0 if displaced_pointer doesn't point to within a valid */
330 /* object. */
331 /* Note that a deallocated object in the garbage collected heap */
332 /* may be considered valid, even if it has been deallocated with */
333 /* GC_free. */
334 GC_API GC_PTR GC_base GC_PROTO((GC_PTR displaced_pointer));
336 /* Given a pointer to the base of an object, return its size in bytes. */
337 /* The returned size may be slightly larger than what was originally */
338 /* requested. */
339 GC_API size_t GC_size GC_PROTO((GC_PTR object_addr));
341 /* For compatibility with C library. This is occasionally faster than */
342 /* a malloc followed by a bcopy. But if you rely on that, either here */
343 /* or with the standard C library, your code is broken. In my */
344 /* opinion, it shouldn't have been invented, but now we're stuck. -HB */
345 /* The resulting object has the same kind as the original. */
346 /* If the argument is stubborn, the result will have changes enabled. */
347 /* It is an error to have changes enabled for the original object. */
348 /* Follows ANSI comventions for NULL old_object. */
349 GC_API GC_PTR GC_realloc
350 GC_PROTO((GC_PTR old_object, size_t new_size_in_bytes));
352 /* Explicitly increase the heap size. */
353 /* Returns 0 on failure, 1 on success. */
354 GC_API int GC_expand_hp GC_PROTO((size_t number_of_bytes));
356 /* Limit the heap size to n bytes. Useful when you're debugging, */
357 /* especially on systems that don't handle running out of memory well. */
358 /* n == 0 ==> unbounded. This is the default. */
359 GC_API void GC_set_max_heap_size GC_PROTO((GC_word n));
361 /* Inform the collector that a certain section of statically allocated */
362 /* memory contains no pointers to garbage collected memory. Thus it */
363 /* need not be scanned. This is sometimes important if the application */
364 /* maps large read/write files into the address space, which could be */
365 /* mistaken for dynamic library data segments on some systems. */
366 GC_API void GC_exclude_static_roots GC_PROTO((GC_PTR start, GC_PTR finish));
368 /* Clear the set of root segments. Wizards only. */
369 GC_API void GC_clear_roots GC_PROTO((void));
371 /* Add a root segment. Wizards only. */
372 GC_API void GC_add_roots GC_PROTO((char * low_address,
373 char * high_address_plus_1));
375 /* Remove a root segment. Wizards only. */
376 GC_API void GC_remove_roots GC_PROTO((char * low_address,
377 char * high_address_plus_1));
379 /* Add a displacement to the set of those considered valid by the */
380 /* collector. GC_register_displacement(n) means that if p was returned */
381 /* by GC_malloc, then (char *)p + n will be considered to be a valid */
382 /* pointer to p. N must be small and less than the size of p. */
383 /* (All pointers to the interior of objects from the stack are */
384 /* considered valid in any case. This applies to heap objects and */
385 /* static data.) */
386 /* Preferably, this should be called before any other GC procedures. */
387 /* Calling it later adds to the probability of excess memory */
388 /* retention. */
389 /* This is a no-op if the collector has recognition of */
390 /* arbitrary interior pointers enabled, which is now the default. */
391 GC_API void GC_register_displacement GC_PROTO((GC_word n));
393 /* The following version should be used if any debugging allocation is */
394 /* being done. */
395 GC_API void GC_debug_register_displacement GC_PROTO((GC_word n));
397 /* Explicitly trigger a full, world-stop collection. */
398 GC_API void GC_gcollect GC_PROTO((void));
400 /* Trigger a full world-stopped collection. Abort the collection if */
401 /* and when stop_func returns a nonzero value. Stop_func will be */
402 /* called frequently, and should be reasonably fast. This works even */
403 /* if virtual dirty bits, and hence incremental collection is not */
404 /* available for this architecture. Collections can be aborted faster */
405 /* than normal pause times for incremental collection. However, */
406 /* aborted collections do no useful work; the next collection needs */
407 /* to start from the beginning. */
408 /* Return 0 if the collection was aborted, 1 if it succeeded. */
409 typedef int (* GC_stop_func) GC_PROTO((void));
410 GC_API int GC_try_to_collect GC_PROTO((GC_stop_func stop_func));
412 /* Return the number of bytes in the heap. Excludes collector private */
413 /* data structures. Includes empty blocks and fragmentation loss. */
414 /* Includes some pages that were allocated but never written. */
415 GC_API size_t GC_get_heap_size GC_PROTO((void));
417 /* Return a lower bound on the number of free bytes in the heap. */
418 GC_API size_t GC_get_free_bytes GC_PROTO((void));
420 /* Return the number of bytes allocated since the last collection. */
421 GC_API size_t GC_get_bytes_since_gc GC_PROTO((void));
423 /* Return the total number of bytes allocated in this process. */
424 /* Never decreases, except due to wrapping. */
425 GC_API size_t GC_get_total_bytes GC_PROTO((void));
427 /* Return the signal used by the gc to suspend threads on posix platforms. */
428 /* Return -1 otherwise. */
429 int GC_get_suspend_signal GC_PROTO((void));
431 /* Disable garbage collection. Even GC_gcollect calls will be */
432 /* ineffective. */
433 GC_API void GC_disable GC_PROTO((void));
435 /* Reenable garbage collection. GC_disable() and GC_enable() calls */
436 /* nest. Garbage collection is enabled if the number of calls to both */
437 /* both functions is equal. */
438 GC_API void GC_enable GC_PROTO((void));
440 /* Enable incremental/generational collection. */
441 /* Not advisable unless dirty bits are */
442 /* available or most heap objects are */
443 /* pointerfree(atomic) or immutable. */
444 /* Don't use in leak finding mode. */
445 /* Ignored if GC_dont_gc is true. */
446 /* Only the generational piece of this is */
447 /* functional if GC_parallel is TRUE */
448 /* or if GC_time_limit is GC_TIME_UNLIMITED. */
449 /* Causes GC_local_gcj_malloc() to revert to */
450 /* locked allocation. Must be called */
451 /* before any GC_local_gcj_malloc() calls. */
452 GC_API void GC_enable_incremental GC_PROTO((void));
454 /* Does incremental mode write-protect pages? Returns zero or */
455 /* more of the following, or'ed together: */
456 #define GC_PROTECTS_POINTER_HEAP 1 /* May protect non-atomic objs. */
457 #define GC_PROTECTS_PTRFREE_HEAP 2
458 #define GC_PROTECTS_STATIC_DATA 4 /* Curently never. */
459 #define GC_PROTECTS_STACK 8 /* Probably impractical. */
461 #define GC_PROTECTS_NONE 0
462 GC_API int GC_incremental_protection_needs GC_PROTO((void));
464 /* Perform some garbage collection work, if appropriate. */
465 /* Return 0 if there is no more work to be done. */
466 /* Typically performs an amount of work corresponding roughly */
467 /* to marking from one page. May do more work if further */
468 /* progress requires it, e.g. if incremental collection is */
469 /* disabled. It is reasonable to call this in a wait loop */
470 /* until it returns 0. */
471 GC_API int GC_collect_a_little GC_PROTO((void));
473 /* Allocate an object of size lb bytes. The client guarantees that */
474 /* as long as the object is live, it will be referenced by a pointer */
475 /* that points to somewhere within the first 256 bytes of the object. */
476 /* (This should normally be declared volatile to prevent the compiler */
477 /* from invalidating this assertion.) This routine is only useful */
478 /* if a large array is being allocated. It reduces the chance of */
479 /* accidentally retaining such an array as a result of scanning an */
480 /* integer that happens to be an address inside the array. (Actually, */
481 /* it reduces the chance of the allocator not finding space for such */
482 /* an array, since it will try hard to avoid introducing such a false */
483 /* reference.) On a SunOS 4.X or MS Windows system this is recommended */
484 /* for arrays likely to be larger than 100K or so. For other systems, */
485 /* or if the collector is not configured to recognize all interior */
486 /* pointers, the threshold is normally much higher. */
487 GC_API GC_PTR GC_malloc_ignore_off_page GC_PROTO((size_t lb));
488 GC_API GC_PTR GC_malloc_atomic_ignore_off_page GC_PROTO((size_t lb));
490 #if defined(__sgi) && !defined(__GNUC__) && _COMPILER_VERSION >= 720
491 # define GC_ADD_CALLER
492 # define GC_RETURN_ADDR (GC_word)__return_address
493 #endif
495 #ifdef __linux__
496 # include <features.h>
497 # if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1 || __GLIBC__ > 2) \
498 && !defined(__ia64__)
499 # ifndef GC_HAVE_BUILTIN_BACKTRACE
500 # define GC_HAVE_BUILTIN_BACKTRACE
501 # endif
502 # endif
503 # if defined(__i386__) || defined(__x86_64__)
504 # define GC_CAN_SAVE_CALL_STACKS
505 # endif
506 #endif
508 #if defined(GC_HAVE_BUILTIN_BACKTRACE) && !defined(GC_CAN_SAVE_CALL_STACKS)
509 # define GC_CAN_SAVE_CALL_STACKS
510 #endif
512 #if defined(__sparc__)
513 # define GC_CAN_SAVE_CALL_STACKS
514 #endif
516 /* If we're on an a platform on which we can't save call stacks, but */
517 /* gcc is normally used, we go ahead and define GC_ADD_CALLER. */
518 /* We make this decision independent of whether gcc is actually being */
519 /* used, in order to keep the interface consistent, and allow mixing */
520 /* of compilers. */
521 /* This may also be desirable if it is possible but expensive to */
522 /* retrieve the call chain. */
523 #if (defined(__linux__) || defined(__NetBSD__) || defined(__OpenBSD__) \
524 || defined(__FreeBSD__)) & !defined(GC_CAN_SAVE_CALL_STACKS)
525 # define GC_ADD_CALLER
526 # if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
527 /* gcc knows how to retrieve return address, but we don't know */
528 /* how to generate call stacks. */
529 # define GC_RETURN_ADDR (GC_word)__builtin_return_address(0)
530 # else
531 /* Just pass 0 for gcc compatibility. */
532 # define GC_RETURN_ADDR 0
533 # endif
534 #endif
536 #ifdef GC_ADD_CALLER
537 # define GC_EXTRAS GC_RETURN_ADDR, __FILE__, __LINE__
538 # define GC_EXTRA_PARAMS GC_word ra, GC_CONST char * s, int i
539 #else
540 # define GC_EXTRAS __FILE__, __LINE__
541 # define GC_EXTRA_PARAMS GC_CONST char * s, int i
542 #endif
544 /* Debugging (annotated) allocation. GC_gcollect will check */
545 /* objects allocated in this way for overwrites, etc. */
546 GC_API GC_PTR GC_debug_malloc
547 GC_PROTO((size_t size_in_bytes, GC_EXTRA_PARAMS));
548 GC_API GC_PTR GC_debug_malloc_atomic
549 GC_PROTO((size_t size_in_bytes, GC_EXTRA_PARAMS));
550 GC_API GC_PTR GC_debug_malloc_uncollectable
551 GC_PROTO((size_t size_in_bytes, GC_EXTRA_PARAMS));
552 GC_API GC_PTR GC_debug_malloc_stubborn
553 GC_PROTO((size_t size_in_bytes, GC_EXTRA_PARAMS));
554 GC_API GC_PTR GC_debug_malloc_ignore_off_page
555 GC_PROTO((size_t size_in_bytes, GC_EXTRA_PARAMS));
556 GC_API GC_PTR GC_debug_malloc_atomic_ignore_off_page
557 GC_PROTO((size_t size_in_bytes, GC_EXTRA_PARAMS));
558 GC_API void GC_debug_free GC_PROTO((GC_PTR object_addr));
559 GC_API GC_PTR GC_debug_realloc
560 GC_PROTO((GC_PTR old_object, size_t new_size_in_bytes,
561 GC_EXTRA_PARAMS));
562 GC_API void GC_debug_change_stubborn GC_PROTO((GC_PTR));
563 GC_API void GC_debug_end_stubborn_change GC_PROTO((GC_PTR));
565 /* Routines that allocate objects with debug information (like the */
566 /* above), but just fill in dummy file and line number information. */
567 /* Thus they can serve as drop-in malloc/realloc replacements. This */
568 /* can be useful for two reasons: */
569 /* 1) It allows the collector to be built with DBG_HDRS_ALL defined */
570 /* even if some allocation calls come from 3rd party libraries */
571 /* that can't be recompiled. */
572 /* 2) On some platforms, the file and line information is redundant, */
573 /* since it can be reconstructed from a stack trace. On such */
574 /* platforms it may be more convenient not to recompile, e.g. for */
575 /* leak detection. This can be accomplished by instructing the */
576 /* linker to replace malloc/realloc with these. */
577 GC_API GC_PTR GC_debug_malloc_replacement GC_PROTO((size_t size_in_bytes));
578 GC_API GC_PTR GC_debug_realloc_replacement
579 GC_PROTO((GC_PTR object_addr, size_t size_in_bytes));
581 # ifdef GC_DEBUG
582 # define GC_MALLOC(sz) GC_debug_malloc(sz, GC_EXTRAS)
583 # define GC_MALLOC_ATOMIC(sz) GC_debug_malloc_atomic(sz, GC_EXTRAS)
584 # define GC_MALLOC_UNCOLLECTABLE(sz) \
585 GC_debug_malloc_uncollectable(sz, GC_EXTRAS)
586 # define GC_MALLOC_IGNORE_OFF_PAGE(sz) \
587 GC_debug_malloc_ignore_off_page(sz, GC_EXTRAS)
588 # define GC_MALLOC_ATOMIC_IGNORE_OFF_PAGE(sz) \
589 GC_debug_malloc_atomic_ignore_off_page(sz, GC_EXTRAS)
590 # define GC_REALLOC(old, sz) GC_debug_realloc(old, sz, GC_EXTRAS)
591 # define GC_FREE(p) GC_debug_free(p)
592 # define GC_REGISTER_FINALIZER(p, f, d, of, od) \
593 GC_debug_register_finalizer(p, f, d, of, od)
594 # define GC_REGISTER_FINALIZER_IGNORE_SELF(p, f, d, of, od) \
595 GC_debug_register_finalizer_ignore_self(p, f, d, of, od)
596 # define GC_REGISTER_FINALIZER_NO_ORDER(p, f, d, of, od) \
597 GC_debug_register_finalizer_no_order(p, f, d, of, od)
598 # define GC_MALLOC_STUBBORN(sz) GC_debug_malloc_stubborn(sz, GC_EXTRAS);
599 # define GC_CHANGE_STUBBORN(p) GC_debug_change_stubborn(p)
600 # define GC_END_STUBBORN_CHANGE(p) GC_debug_end_stubborn_change(p)
601 # define GC_GENERAL_REGISTER_DISAPPEARING_LINK(link, obj) \
602 GC_general_register_disappearing_link(link, GC_base(obj))
603 # define GC_REGISTER_DISPLACEMENT(n) GC_debug_register_displacement(n)
604 # else
605 # define GC_MALLOC(sz) GC_malloc(sz)
606 # define GC_MALLOC_ATOMIC(sz) GC_malloc_atomic(sz)
607 # define GC_MALLOC_UNCOLLECTABLE(sz) GC_malloc_uncollectable(sz)
608 # define GC_MALLOC_IGNORE_OFF_PAGE(sz) \
609 GC_malloc_ignore_off_page(sz)
610 # define GC_MALLOC_ATOMIC_IGNORE_OFF_PAGE(sz) \
611 GC_malloc_atomic_ignore_off_page(sz)
612 # define GC_REALLOC(old, sz) GC_realloc(old, sz)
613 # define GC_FREE(p) GC_free(p)
614 # define GC_REGISTER_FINALIZER(p, f, d, of, od) \
615 GC_register_finalizer(p, f, d, of, od)
616 # define GC_REGISTER_FINALIZER_IGNORE_SELF(p, f, d, of, od) \
617 GC_register_finalizer_ignore_self(p, f, d, of, od)
618 # define GC_REGISTER_FINALIZER_NO_ORDER(p, f, d, of, od) \
619 GC_register_finalizer_no_order(p, f, d, of, od)
620 # define GC_MALLOC_STUBBORN(sz) GC_malloc_stubborn(sz)
621 # define GC_CHANGE_STUBBORN(p) GC_change_stubborn(p)
622 # define GC_END_STUBBORN_CHANGE(p) GC_end_stubborn_change(p)
623 # define GC_GENERAL_REGISTER_DISAPPEARING_LINK(link, obj) \
624 GC_general_register_disappearing_link(link, obj)
625 # define GC_REGISTER_DISPLACEMENT(n) GC_register_displacement(n)
626 # endif
627 /* The following are included because they are often convenient, and */
628 /* reduce the chance for a misspecifed size argument. But calls may */
629 /* expand to something syntactically incorrect if t is a complicated */
630 /* type expression. */
631 # define GC_NEW(t) (t *)GC_MALLOC(sizeof (t))
632 # define GC_NEW_ATOMIC(t) (t *)GC_MALLOC_ATOMIC(sizeof (t))
633 # define GC_NEW_STUBBORN(t) (t *)GC_MALLOC_STUBBORN(sizeof (t))
634 # define GC_NEW_UNCOLLECTABLE(t) (t *)GC_MALLOC_UNCOLLECTABLE(sizeof (t))
636 /* Finalization. Some of these primitives are grossly unsafe. */
637 /* The idea is to make them both cheap, and sufficient to build */
638 /* a safer layer, closer to Modula-3, Java, or PCedar finalization. */
639 /* The interface represents my conclusions from a long discussion */
640 /* with Alan Demers, Dan Greene, Carl Hauser, Barry Hayes, */
641 /* Christian Jacobi, and Russ Atkinson. It's not perfect, and */
642 /* probably nobody else agrees with it. Hans-J. Boehm 3/13/92 */
643 typedef void (*GC_finalization_proc)
644 GC_PROTO((GC_PTR obj, GC_PTR client_data));
646 GC_API void GC_register_finalizer
647 GC_PROTO((GC_PTR obj, GC_finalization_proc fn, GC_PTR cd,
648 GC_finalization_proc *ofn, GC_PTR *ocd));
649 GC_API void GC_debug_register_finalizer
650 GC_PROTO((GC_PTR obj, GC_finalization_proc fn, GC_PTR cd,
651 GC_finalization_proc *ofn, GC_PTR *ocd));
652 /* When obj is no longer accessible, invoke */
653 /* (*fn)(obj, cd). If a and b are inaccessible, and */
654 /* a points to b (after disappearing links have been */
655 /* made to disappear), then only a will be */
656 /* finalized. (If this does not create any new */
657 /* pointers to b, then b will be finalized after the */
658 /* next collection.) Any finalizable object that */
659 /* is reachable from itself by following one or more */
660 /* pointers will not be finalized (or collected). */
661 /* Thus cycles involving finalizable objects should */
662 /* be avoided, or broken by disappearing links. */
663 /* All but the last finalizer registered for an object */
664 /* is ignored. */
665 /* Finalization may be removed by passing 0 as fn. */
666 /* Finalizers are implicitly unregistered just before */
667 /* they are invoked. */
668 /* The old finalizer and client data are stored in */
669 /* *ofn and *ocd. */
670 /* Fn is never invoked on an accessible object, */
671 /* provided hidden pointers are converted to real */
672 /* pointers only if the allocation lock is held, and */
673 /* such conversions are not performed by finalization */
674 /* routines. */
675 /* If GC_register_finalizer is aborted as a result of */
676 /* a signal, the object may be left with no */
677 /* finalization, even if neither the old nor new */
678 /* finalizer were NULL. */
679 /* Obj should be the nonNULL starting address of an */
680 /* object allocated by GC_malloc or friends. */
681 /* Note that any garbage collectable object referenced */
682 /* by cd will be considered accessible until the */
683 /* finalizer is invoked. */
685 /* Another versions of the above follow. It ignores */
686 /* self-cycles, i.e. pointers from a finalizable object to */
687 /* itself. There is a stylistic argument that this is wrong, */
688 /* but it's unavoidable for C++, since the compiler may */
689 /* silently introduce these. It's also benign in that specific */
690 /* case. And it helps if finalizable objects are split to */
691 /* avoid cycles. */
692 /* Note that cd will still be viewed as accessible, even if it */
693 /* refers to the object itself. */
694 GC_API void GC_register_finalizer_ignore_self
695 GC_PROTO((GC_PTR obj, GC_finalization_proc fn, GC_PTR cd,
696 GC_finalization_proc *ofn, GC_PTR *ocd));
697 GC_API void GC_debug_register_finalizer_ignore_self
698 GC_PROTO((GC_PTR obj, GC_finalization_proc fn, GC_PTR cd,
699 GC_finalization_proc *ofn, GC_PTR *ocd));
701 /* Another version of the above. It ignores all cycles. */
702 /* It should probably only be used by Java implementations. */
703 /* Note that cd will still be viewed as accessible, even if it */
704 /* refers to the object itself. */
705 GC_API void GC_register_finalizer_no_order
706 GC_PROTO((GC_PTR obj, GC_finalization_proc fn, GC_PTR cd,
707 GC_finalization_proc *ofn, GC_PTR *ocd));
708 GC_API void GC_debug_register_finalizer_no_order
709 GC_PROTO((GC_PTR obj, GC_finalization_proc fn, GC_PTR cd,
710 GC_finalization_proc *ofn, GC_PTR *ocd));
713 /* The following routine may be used to break cycles between */
714 /* finalizable objects, thus causing cyclic finalizable */
715 /* objects to be finalized in the correct order. Standard */
716 /* use involves calling GC_register_disappearing_link(&p), */
717 /* where p is a pointer that is not followed by finalization */
718 /* code, and should not be considered in determining */
719 /* finalization order. */
720 GC_API int GC_register_disappearing_link GC_PROTO((GC_PTR * /* link */));
721 /* Link should point to a field of a heap allocated */
722 /* object obj. *link will be cleared when obj is */
723 /* found to be inaccessible. This happens BEFORE any */
724 /* finalization code is invoked, and BEFORE any */
725 /* decisions about finalization order are made. */
726 /* This is useful in telling the finalizer that */
727 /* some pointers are not essential for proper */
728 /* finalization. This may avoid finalization cycles. */
729 /* Note that obj may be resurrected by another */
730 /* finalizer, and thus the clearing of *link may */
731 /* be visible to non-finalization code. */
732 /* There's an argument that an arbitrary action should */
733 /* be allowed here, instead of just clearing a pointer. */
734 /* But this causes problems if that action alters, or */
735 /* examines connectivity. */
736 /* Returns 1 if link was already registered, 0 */
737 /* otherwise. */
738 /* Only exists for backward compatibility. See below: */
740 GC_API int GC_general_register_disappearing_link
741 GC_PROTO((GC_PTR * /* link */, GC_PTR obj));
742 /* A slight generalization of the above. *link is */
743 /* cleared when obj first becomes inaccessible. This */
744 /* can be used to implement weak pointers easily and */
745 /* safely. Typically link will point to a location */
746 /* holding a disguised pointer to obj. (A pointer */
747 /* inside an "atomic" object is effectively */
748 /* disguised.) In this way soft */
749 /* pointers are broken before any object */
750 /* reachable from them are finalized. Each link */
751 /* May be registered only once, i.e. with one obj */
752 /* value. This was added after a long email discussion */
753 /* with John Ellis. */
754 /* Obj must be a pointer to the first word of an object */
755 /* we allocated. It is unsafe to explicitly deallocate */
756 /* the object containing link. Explicitly deallocating */
757 /* obj may or may not cause link to eventually be */
758 /* cleared. */
759 GC_API int GC_unregister_disappearing_link GC_PROTO((GC_PTR * /* link */));
760 /* Returns 0 if link was not actually registered. */
761 /* Undoes a registration by either of the above two */
762 /* routines. */
764 /* Returns !=0 if GC_invoke_finalizers has something to do. */
765 GC_API int GC_should_invoke_finalizers GC_PROTO((void));
767 GC_API int GC_invoke_finalizers GC_PROTO((void));
768 /* Run finalizers for all objects that are ready to */
769 /* be finalized. Return the number of finalizers */
770 /* that were run. Normally this is also called */
771 /* implicitly during some allocations. If */
772 /* GC-finalize_on_demand is nonzero, it must be called */
773 /* explicitly. */
775 /* GC_set_warn_proc can be used to redirect or filter warning messages. */
776 /* p may not be a NULL pointer. */
777 typedef void (*GC_warn_proc) GC_PROTO((char *msg, GC_word arg));
778 GC_API GC_warn_proc GC_set_warn_proc GC_PROTO((GC_warn_proc p));
779 /* Returns old warning procedure. */
781 GC_API GC_word GC_set_free_space_divisor GC_PROTO((GC_word value));
782 /* Set free_space_divisor. See above for definition. */
783 /* Returns old value. */
785 /* The following is intended to be used by a higher level */
786 /* (e.g. Java-like) finalization facility. It is expected */
787 /* that finalization code will arrange for hidden pointers to */
788 /* disappear. Otherwise objects can be accessed after they */
789 /* have been collected. */
790 /* Note that putting pointers in atomic objects or in */
791 /* nonpointer slots of "typed" objects is equivalent to */
792 /* disguising them in this way, and may have other advantages. */
793 # if defined(I_HIDE_POINTERS) || defined(GC_I_HIDE_POINTERS)
794 typedef GC_word GC_hidden_pointer;
795 # define HIDE_POINTER(p) (~(GC_hidden_pointer)(p))
796 # define REVEAL_POINTER(p) ((GC_PTR)(HIDE_POINTER(p)))
797 /* Converting a hidden pointer to a real pointer requires verifying */
798 /* that the object still exists. This involves acquiring the */
799 /* allocator lock to avoid a race with the collector. */
800 # endif /* I_HIDE_POINTERS */
802 typedef GC_PTR (*GC_fn_type) GC_PROTO((GC_PTR client_data));
803 GC_API GC_PTR GC_call_with_alloc_lock
804 GC_PROTO((GC_fn_type fn, GC_PTR client_data));
806 /* The following routines are primarily intended for use with a */
807 /* preprocessor which inserts calls to check C pointer arithmetic. */
808 /* They indicate failure by invoking the corresponding _print_proc. */
810 /* Check that p and q point to the same object. */
811 /* Fail conspicuously if they don't. */
812 /* Returns the first argument. */
813 /* Succeeds if neither p nor q points to the heap. */
814 /* May succeed if both p and q point to between heap objects. */
815 GC_API GC_PTR GC_same_obj GC_PROTO((GC_PTR p, GC_PTR q));
817 /* Checked pointer pre- and post- increment operations. Note that */
818 /* the second argument is in units of bytes, not multiples of the */
819 /* object size. This should either be invoked from a macro, or the */
820 /* call should be automatically generated. */
821 GC_API GC_PTR GC_pre_incr GC_PROTO((GC_PTR *p, size_t how_much));
822 GC_API GC_PTR GC_post_incr GC_PROTO((GC_PTR *p, size_t how_much));
824 /* Check that p is visible */
825 /* to the collector as a possibly pointer containing location. */
826 /* If it isn't fail conspicuously. */
827 /* Returns the argument in all cases. May erroneously succeed */
828 /* in hard cases. (This is intended for debugging use with */
829 /* untyped allocations. The idea is that it should be possible, though */
830 /* slow, to add such a call to all indirect pointer stores.) */
831 /* Currently useless for multithreaded worlds. */
832 GC_API GC_PTR GC_is_visible GC_PROTO((GC_PTR p));
834 /* Check that if p is a pointer to a heap page, then it points to */
835 /* a valid displacement within a heap object. */
836 /* Fail conspicuously if this property does not hold. */
837 /* Uninteresting with GC_all_interior_pointers. */
838 /* Always returns its argument. */
839 GC_API GC_PTR GC_is_valid_displacement GC_PROTO((GC_PTR p));
841 /* Returns 1 if the calling thread is registered with the GC, 0 otherwise */
842 GC_API int GC_thread_is_registered GC_PROTO((void));
844 /* Safer, but slow, pointer addition. Probably useful mainly with */
845 /* a preprocessor. Useful only for heap pointers. */
846 #ifdef GC_DEBUG
847 # define GC_PTR_ADD3(x, n, type_of_result) \
848 ((type_of_result)GC_same_obj((x)+(n), (x)))
849 # define GC_PRE_INCR3(x, n, type_of_result) \
850 ((type_of_result)GC_pre_incr(&(x), (n)*sizeof(*x))
851 # define GC_POST_INCR2(x, type_of_result) \
852 ((type_of_result)GC_post_incr(&(x), sizeof(*x))
853 # ifdef __GNUC__
854 # define GC_PTR_ADD(x, n) \
855 GC_PTR_ADD3(x, n, typeof(x))
856 # define GC_PRE_INCR(x, n) \
857 GC_PRE_INCR3(x, n, typeof(x))
858 # define GC_POST_INCR(x, n) \
859 GC_POST_INCR3(x, typeof(x))
860 # else
861 /* We can't do this right without typeof, which ANSI */
862 /* decided was not sufficiently useful. Repeatedly */
863 /* mentioning the arguments seems too dangerous to be */
864 /* useful. So does not casting the result. */
865 # define GC_PTR_ADD(x, n) ((x)+(n))
866 # endif
867 #else /* !GC_DEBUG */
868 # define GC_PTR_ADD3(x, n, type_of_result) ((x)+(n))
869 # define GC_PTR_ADD(x, n) ((x)+(n))
870 # define GC_PRE_INCR3(x, n, type_of_result) ((x) += (n))
871 # define GC_PRE_INCR(x, n) ((x) += (n))
872 # define GC_POST_INCR2(x, n, type_of_result) ((x)++)
873 # define GC_POST_INCR(x, n) ((x)++)
874 #endif
876 /* Safer assignment of a pointer to a nonstack location. */
877 #ifdef GC_DEBUG
878 # if defined(__STDC__) || defined(_AIX)
879 # define GC_PTR_STORE(p, q) \
880 (*(void **)GC_is_visible(p) = GC_is_valid_displacement(q))
881 # else
882 # define GC_PTR_STORE(p, q) \
883 (*(char **)GC_is_visible(p) = GC_is_valid_displacement(q))
884 # endif
885 #else /* !GC_DEBUG */
886 # define GC_PTR_STORE(p, q) *((p) = (q))
887 #endif
889 /* Functions called to report pointer checking errors */
890 GC_API void (*GC_same_obj_print_proc) GC_PROTO((GC_PTR p, GC_PTR q));
892 GC_API void (*GC_is_valid_displacement_print_proc)
893 GC_PROTO((GC_PTR p));
895 GC_API void (*GC_is_visible_print_proc)
896 GC_PROTO((GC_PTR p));
898 /* For pthread support, we generally need to intercept a number of */
899 /* thread library calls. We do that here by macro defining them. */
901 #if !defined(GC_USE_LD_WRAP) && \
902 (defined(GC_PTHREADS) || defined(GC_SOLARIS_THREADS) || defined(GC_DARWIN_THREADS) || defined(GC_MACOSX_THREADS))
903 #if defined(_IN_LIBGC) || defined(USE_INCLUDED_LIBGC)
904 # include "gc_pthread_redirects.h"
905 #else
906 # include <gc/gc_pthread_redirects.h>
907 #endif
908 #endif
910 # if defined(PCR) || defined(GC_SOLARIS_THREADS) || \
911 defined(GC_PTHREADS) || defined(GC_WIN32_THREADS)
912 /* Any flavor of threads except SRC_M3. */
913 /* This returns a list of objects, linked through their first */
914 /* word. Its use can greatly reduce lock contention problems, since */
915 /* the allocation lock can be acquired and released many fewer times. */
916 /* lb must be large enough to hold the pointer field. */
917 /* It is used internally by gc_local_alloc.h, which provides a simpler */
918 /* programming interface on Linux. */
919 GC_PTR GC_malloc_many(size_t lb);
920 #define GC_NEXT(p) (*(GC_PTR *)(p)) /* Retrieve the next element */
921 /* in returned list. */
922 extern void GC_thr_init(void); /* Needed for Solaris/X86 */
924 #endif /* THREADS && !SRC_M3 */
926 #if defined(GC_WIN32_THREADS) && !defined(__CYGWIN32__) && !defined(__CYGWIN__)
927 # include <windows.h>
929 BOOL WINAPI GC_DllMain(HINSTANCE inst, ULONG reason, LPVOID reserved);
932 * All threads must be created using GC_CreateThread, so that they will be
933 * recorded in the thread table. For backwards compatibility, this is not
934 * technically true if the GC is built as a dynamic library, since it can
935 * and does then use DllMain to keep track of thread creations. But new code
936 * should be built to call GC_CreateThread.
938 GC_API HANDLE WINAPI GC_CreateThread(
939 LPSECURITY_ATTRIBUTES lpThreadAttributes,
940 DWORD dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress,
941 LPVOID lpParameter, DWORD dwCreationFlags, LPDWORD lpThreadId );
943 # if defined(_WIN32_WCE)
945 * win32_threads.c implements the real WinMain, which will start a new thread
946 * to call GC_WinMain after initializing the garbage collector.
948 int WINAPI GC_WinMain(
949 HINSTANCE hInstance,
950 HINSTANCE hPrevInstance,
951 LPWSTR lpCmdLine,
952 int nCmdShow );
954 # ifndef GC_BUILD
955 # define WinMain GC_WinMain
956 # define CreateThread GC_CreateThread
957 # endif
958 # endif /* defined(_WIN32_WCE) */
960 #endif /* defined(GC_WIN32_THREADS) && !cygwin */
963 * Fully portable code should call GC_INIT() from the main program
964 * before making any other GC_ calls. On most platforms this is a
965 * no-op and the collector self-initializes. But a number of platforms
966 * make that too hard.
968 #if (defined(sparc) || defined(__sparc)) && defined(sun)
970 * If you are planning on putting
971 * the collector in a SunOS 5 dynamic library, you need to call GC_INIT()
972 * from the statically loaded program section.
973 * This circumvents a Solaris 2.X (X<=4) linker bug.
975 # define GC_INIT() { extern end, etext; \
976 GC_noop(&end, &etext); }
977 #else
978 # if defined(__CYGWIN32__) || defined (_AIX)
980 * Similarly gnu-win32 DLLs need explicit initialization from
981 * the main program, as does AIX.
983 # ifdef __CYGWIN32__
984 extern int _data_start__[];
985 extern int _data_end__[];
986 extern int _bss_start__[];
987 extern int _bss_end__[];
988 # define GC_MAX(x,y) ((x) > (y) ? (x) : (y))
989 # define GC_MIN(x,y) ((x) < (y) ? (x) : (y))
990 # define GC_DATASTART ((GC_PTR) GC_MIN(_data_start__, _bss_start__))
991 # define GC_DATAEND ((GC_PTR) GC_MAX(_data_end__, _bss_end__))
992 # ifdef GC_DLL
993 # define GC_INIT() { GC_add_roots(GC_DATASTART, GC_DATAEND); }
994 # else
995 # define GC_INIT()
996 # endif
997 # endif
998 # if defined(_AIX)
999 extern int _data[], _end[];
1000 # define GC_DATASTART ((GC_PTR)((ulong)_data))
1001 # define GC_DATAEND ((GC_PTR)((ulong)_end))
1002 # define GC_INIT() { GC_add_roots(GC_DATASTART, GC_DATAEND); }
1003 # endif
1004 # else
1005 # if defined(__APPLE__) && defined(__MACH__) || defined(GC_WIN32_THREADS)
1006 # define GC_INIT() { GC_init(); }
1007 # else
1008 # define GC_INIT()
1009 # endif /* !__MACH && !GC_WIN32_THREADS */
1010 # endif /* !AIX && !cygwin */
1011 #endif /* !sparc */
1013 #if !defined(_WIN32_WCE) \
1014 && ((defined(_MSDOS) || defined(_MSC_VER)) && (_M_IX86 >= 300) \
1015 || defined(_WIN32) && !defined(__CYGWIN32__) && !defined(__CYGWIN__))
1016 /* win32S may not free all resources on process exit. */
1017 /* This explicitly deallocates the heap. */
1018 GC_API void GC_win32_free_heap ();
1019 #endif
1021 #if ( defined(_AMIGA) && !defined(GC_AMIGA_MAKINGLIB) )
1022 /* Allocation really goes through GC_amiga_allocwrapper_do */
1023 # include "gc_amiga_redirects.h"
1024 #endif
1026 #if defined(GC_REDIRECT_TO_LOCAL) && !defined(GC_LOCAL_ALLOC_H)
1027 # include "gc_local_alloc.h"
1028 #endif
1030 #ifdef __cplusplus
1031 } /* end of extern "C" */
1032 #endif
1034 #endif /* _GC_H */