1.0.24.41: add necessary disambiguating curly braces to runtime
[sbcl.git] / src / compiler / generic / parms.lisp
index c41f8a3..df1f733 100644 (file)
@@ -20,6 +20,7 @@
     sb!kernel::undefined-alien-variable-error
     sb!kernel::undefined-alien-function-error
     sb!kernel::memory-fault-error
+    sb!kernel::unhandled-trap-error
     sb!di::handle-breakpoint
     sb!di::handle-single-step-trap
     fdefinition-object
     ;; bignums.  -- WHN 2000-10-02
     *read-only-space-free-pointer*
     *static-space-free-pointer*
-    *initial-dynamic-space-free-pointer*
 
     ;; things needed for non-local-exit
     *current-catch-block*
     *current-unwind-protect-block*
 
+    #!+hpux *c-lra*
+
     ;; stack pointers
     *binding-stack-start*
     *control-stack-start*
     *control-stack-end*
 
     ;; interrupt handling
+    *alloc-signal*
     *free-interrupt-context-index*
+    sb!unix::*allow-with-interrupts*
     sb!unix::*interrupts-enabled*
     sb!unix::*interrupt-pending*
     *gc-inhibit*
     #!-sb-thread
     *stepping*
 
+    ;; Dispatch tables for generic array access
+    sb!impl::*data-vector-reffers*
+    sb!impl::*data-vector-setters*
+    sb!impl::*data-vector-reffers/check-bounds*
+    sb!impl::*data-vector-setters/check-bounds*
+
     ;; hash table weaknesses
     :key
     :value
     :key-and-value
     :key-or-value))
+
+;;; Number of entries in the thread local storage. Limits the number
+;;; of symbols with thread local bindings.
+(def!constant tls-size 4096)