X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fgeneric%2Fparms.lisp;h=7954fc4eaf6bf50514fcd7dba533af72612e9f19;hb=7244742c3a9478d13d813aaae8135973eb4b89aa;hp=95fae7384bf6e111438d3452390e75b5d3e6cccd;hpb=23124951022f995aace9e7f17e650cd23b83c591;p=sbcl.git diff --git a/src/compiler/generic/parms.lisp b/src/compiler/generic/parms.lisp index 95fae73..7954fc4 100644 --- a/src/compiler/generic/parms.lisp +++ b/src/compiler/generic/parms.lisp @@ -14,6 +14,7 @@ (defparameter *c-callable-static-symbols* '(sub-gc + sb!kernel::post-gc sb!kernel::internal-error sb!kernel::control-stack-exhausted-error sb!kernel::heap-exhausted-error @@ -24,7 +25,6 @@ sb!di::handle-breakpoint sb!di::handle-single-step-trap fdefinition-object - #!+sb-thread sb!thread::run-interruption #!+win32 sb!kernel::handle-win32-exception)) (defparameter *common-static-symbols* @@ -44,6 +44,8 @@ *current-catch-block* *current-unwind-protect-block* + #!+hpux *c-lra* + ;; stack pointers *binding-stack-start* *control-stack-start* @@ -52,15 +54,27 @@ ;; interrupt handling *alloc-signal* *free-interrupt-context-index* + sb!unix::*allow-with-interrupts* sb!unix::*interrupts-enabled* sb!unix::*interrupt-pending* + *in-without-gcing* *gc-inhibit* *gc-pending* #!-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)