1.0.25.13: 80 chars, trailing space
[sbcl.git] / src / runtime / validate.h
index 26f4670..b0f9122 100644 (file)
@@ -19,7 +19,7 @@
 
 #define BINDING_STACK_SIZE (1024*1024)   /* chosen at random */
 /* eventually choosable per-thread: */
-#define THREAD_CONTROL_STACK_SIZE (2*1024*1024)
+#define DEFAULT_CONTROL_STACK_SIZE (2*1024*1024)
 
 /* constants derived from the fundamental constants in passed by GENESIS */
 #ifdef LISP_FEATURE_GENCGC
 extern void validate(void);
 extern void protect_control_stack_guard_page(int protect_p);
 extern void protect_control_stack_return_guard_page(int protect_p);
-extern void protect_control_stack_guard_page_thread(int protect_p, struct thread *th);
-extern void protect_control_stack_return_guard_page_thread(int protect_p, struct thread* th);
+extern void protect_control_stack_guard_page_thread(int protect_p,
+                                                    struct thread *th);
+extern void protect_control_stack_return_guard_page_thread(int protect_p,
+                                                           struct thread* th);
 extern os_vm_address_t undefined_alien_address;
 #endif