6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
21 #define PAGE_BYTES BACKEND_PAGE_BYTES
23 typedef signed long page_index_t;
24 #define PAGE_INDEX_FMT "ld"
26 typedef signed char generation_index_t;
28 extern void gc_init(void);
29 extern void gc_initialize_pointers(void);
30 extern void collect_garbage(generation_index_t last_gen);
31 extern void gc_init_tables(void);
36 extern void set_auto_gc_trigger(os_vm_size_t usage);
37 extern void clear_auto_gc_trigger(void);
41 extern boolean maybe_gc(os_context_t *context);
43 extern os_vm_size_t bytes_consed_between_gcs;