Extend use of the linkage table to static symbols
[sbcl.git] / src / code / globals.lisp
1 ;;;; This file contains special proclamations for variables that are
2 ;;;; referenced in the code sources before they are defined. There are
3 ;;;; also function proclamations to make some common functions be
4 ;;;; known, avoiding work in recording the calls that are done before
5 ;;;; the definition.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
15
16 (in-package "SB!IMPL")
17
18 (declaim (special *keyword-package* *cl-package*
19                   original-lisp-environment
20                   *standard-readtable*
21                   sb!pretty::*standard-pprint-dispatch-table*
22                   sb!debug:*in-the-debugger*
23                   sb!debug:*stack-top-hint*
24                   *handler-clusters*
25                   *restart-clusters*
26                   *in-without-gcing* *gc-inhibit* *gc-pending*
27                   #!+sb-thread *stop-for-gc-pending*
28                   #!+sb-dynamic-core sb!vm::*required-runtime-c-symbols*
29                   *software-interrupt-vector* *load-verbose*
30                   *load-print-stuff* *in-compilation-unit*
31                   *aborted-compilation-unit-count* *char-name-alist*
32                   *posix-argv*))
33
34 (declaim (ftype (function * *)
35                 find-keyword keyword-test assert-error
36                 assert-prompt check-type-error case-body-error print-object
37                 describe-object sb!pcl::check-wrapper-validity))
38
39 ;;; Gray streams functions not defined until after PCL is loaded
40 (declaim (ftype (function * *)
41                 stream-advance-to-column stream-clear-input
42                 stream-clear-output stream-finish-output stream-force-output
43                 stream-fresh-line stream-line-column stream-line-length
44                 stream-listen stream-peek-char stream-read-byte
45                 stream-read-char stream-read-char-no-hang stream-read-line
46                 stream-start-line-p stream-terpri stream-unread-char
47                 stream-write-byte stream-write-char stream-write-string))