0.7.13.5
[sbcl/lichteblau.git] / src / runtime / globals.c
blobe266ba406a968763b4736f725ffd177519f1eac2
1 /*
2 * variables everybody needs to look at or frob on
3 */
5 /*
6 * This software is part of the SBCL system. See the README file for
7 * more information.
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.
16 #include <stdio.h>
17 #include <sys/types.h>
18 #include <unistd.h>
20 #include "runtime.h"
21 #include "sbcl.h"
22 #include "globals.h"
23 #include "validate.h"
25 int foreign_function_call_active;
27 lispobj *current_control_stack_pointer;
28 lispobj *current_control_frame_pointer;
29 #ifndef BINDING_STACK_POINTER
30 lispobj *current_binding_stack_pointer;
31 #endif
33 /* ALLOCATION_POINTER is x86 or RT. Anyone want to do an RT port? */
35 #ifndef ALLOCATION_POINTER
36 /* The Object Formerly Known As current_dynamic_space_free_pointer */
37 lispobj *dynamic_space_free_pointer;
38 #endif
40 #ifndef LISP_FEATURE_GENCGC /* GENCGC has its own way to record trigger */
41 lispobj *current_auto_gc_trigger;
42 #endif
44 /* For copying GCs, this points to the start of the dynamic space
45 * currently in use (that will become the from_space when the next GC
46 * is done). For the GENCGC, it always points to DYNAMIC_SPACE_START. */
47 lispobj *current_dynamic_space;
49 boolean stop_the_world=0;
50 pid_t parent_pid;
52 void globals_init(void)
54 /* Space, stack, and free pointer vars are initialized by
55 * validate() and coreparse(). */
56 current_control_frame_pointer = (lispobj *)0;
58 #ifndef LISP_FEATURE_GENCGC
59 /* no GC trigger yet */
60 current_auto_gc_trigger = NULL;
61 #endif
63 /* Set foreign function call active. */
64 foreign_function_call_active = 1;
66 /* Initialize the current Lisp state. */
67 #ifdef LISP_FEATURE_STACK_GROWS_DOWNWARD_NOT_UPWARD
68 current_control_stack_pointer = (lispobj *)CONTROL_STACK_END;
69 #else
70 current_control_stack_pointer = (lispobj *)CONTROL_STACK_START;
71 #endif
73 current_control_frame_pointer = (lispobj *)0;
74 #ifndef BINDING_STACK_POINTER
75 current_binding_stack_pointer = native_pointer(BINDING_STACK_START);
76 #endif