X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fgeneric%2Fparms.lisp;h=7954fc4eaf6bf50514fcd7dba533af72612e9f19;hb=7244742c3a9478d13d813aaae8135973eb4b89aa;hp=c39ffe526c802a32be48970af3595392c335aef6;hpb=c548f73e8dd676d6ec4576eba6ab661a5061bdfe;p=sbcl.git diff --git a/src/compiler/generic/parms.lisp b/src/compiler/generic/parms.lisp index c39ffe5..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* @@ -55,6 +57,7 @@ sb!unix::*allow-with-interrupts* sb!unix::*interrupts-enabled* sb!unix::*interrupt-pending* + *in-without-gcing* *gc-inhibit* *gc-pending* #!-sb-thread @@ -71,3 +74,7 @@ :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)