Update of /cvsroot/sbcl/sbcl/src/compiler/x86
In directory sc8-pr-cvs1:/tmp/cvs-serv12977/src/compiler/x86
Modified Files:
parms.lisp
Log Message:
0.8alpha.0.19
We're not using ALTERNATE-SIGNAL-STACK-START, and in fact
haven't been for some time. Remove it.
Index: parms.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/compiler/x86/parms.lisp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- parms.lisp 21 Apr 2003 21:06:36 -0000 1.33
+++ parms.lisp 8 May 2003 12:44:19 -0000 1.34
@@ -142,9 +142,7 @@
(def!constant static-space-end #x07fff000)
(def!constant dynamic-space-start #x09000000)
- (def!constant dynamic-space-end #x29000000)
-
- (def!constant alternate-signal-stack-start #x58000000))
+ (def!constant dynamic-space-end #x29000000))
#!+bsd
(progn
@@ -160,14 +158,7 @@
(def!constant dynamic-space-start
#!+freebsd #x48000000
#!+openbsd #x50000000)
- (def!constant dynamic-space-end #x88000000)
- (def!constant alternate-signal-stack-start
- #!+freebsd #x44000000
- #!+openbsd #x4c000000))
-
-
-;;; don't need alternate-signal-stack-end : it's -start+SIGSTKSZ
-
+ (def!constant dynamic-space-end #x88000000))
;;; Given that NIL is the first thing allocated in static space, we
;;; know its value at compile time:
|