From 3dd78b2bcd3e158bf63906f5da2f87a172e5501f Mon Sep 17 00:00:00 2001 From: David Greenman Date: Tue, 30 Jan 1996 07:59:02 +0000 Subject: [PATCH] Increase tmpstk size to 8K and make certain it is longword aligned. --- sys/amd64/amd64/locore.S | 5 +++-- sys/amd64/amd64/locore.s | 5 +++-- sys/i386/i386/locore.s | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/sys/amd64/amd64/locore.S b/sys/amd64/amd64/locore.S index c76bbd7f4e6..27c49aaa0e9 100644 --- a/sys/amd64/amd64/locore.S +++ b/sys/amd64/amd64/locore.S @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id: locore.s,v 1.59 1995/12/28 21:01:54 davidg Exp $ + * $Id: locore.s,v 1.60 1996/01/04 21:10:48 wollman Exp $ */ /* @@ -101,9 +101,10 @@ * Globals */ .data + .align 2 /* Just to be sure */ .globl tmpstk - .space 0x1000 /* space for tmpstk - temporary stack */ + .space 0x2000 /* space for tmpstk - temporary stack */ tmpstk: /* * Dummy frame at top of tmpstk to help debuggers print a nice stack trace. diff --git a/sys/amd64/amd64/locore.s b/sys/amd64/amd64/locore.s index c76bbd7f4e6..27c49aaa0e9 100644 --- a/sys/amd64/amd64/locore.s +++ b/sys/amd64/amd64/locore.s @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id: locore.s,v 1.59 1995/12/28 21:01:54 davidg Exp $ + * $Id: locore.s,v 1.60 1996/01/04 21:10:48 wollman Exp $ */ /* @@ -101,9 +101,10 @@ * Globals */ .data + .align 2 /* Just to be sure */ .globl tmpstk - .space 0x1000 /* space for tmpstk - temporary stack */ + .space 0x2000 /* space for tmpstk - temporary stack */ tmpstk: /* * Dummy frame at top of tmpstk to help debuggers print a nice stack trace. diff --git a/sys/i386/i386/locore.s b/sys/i386/i386/locore.s index c76bbd7f4e6..27c49aaa0e9 100644 --- a/sys/i386/i386/locore.s +++ b/sys/i386/i386/locore.s @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 - * $Id: locore.s,v 1.59 1995/12/28 21:01:54 davidg Exp $ + * $Id: locore.s,v 1.60 1996/01/04 21:10:48 wollman Exp $ */ /* @@ -101,9 +101,10 @@ * Globals */ .data + .align 2 /* Just to be sure */ .globl tmpstk - .space 0x1000 /* space for tmpstk - temporary stack */ + .space 0x2000 /* space for tmpstk - temporary stack */ tmpstk: /* * Dummy frame at top of tmpstk to help debuggers print a nice stack trace.