Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Mar 2002 04:58:36 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 8151 for review
Message-ID:  <200203211258.g2LCwan07634@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8151

Change 8151 by peter@peter_overcee on 2002/03/21 04:58:01

	32K of register stack is *not* enough to self-compile gcc.
	This isn't right either, but at least it stops gcc's self
	hosting explosions.
	
	Note to self: kick dfr in the shins for this. :-)

Affected files ...

... //depot/projects/ia64/sys/kern/kern_exec.c#7 edit

Differences ...

==== //depot/projects/ia64/sys/kern/kern_exec.c#7 (text+ko) ====

@@ -627,7 +627,7 @@
 		vm_offset_t bsaddr;
 		bsaddr = USRSTACK - 2*maxssiz;
 		error = vm_map_find(&vmspace->vm_map, 0, 0, &bsaddr,
-				    4*PAGE_SIZE, 0,
+				    64 * PAGE_SIZE, 0,
 				    VM_PROT_ALL, VM_PROT_ALL, 0);
 		FIRST_THREAD_IN_PROC(imgp->proc)->td_md.md_bspstore = bsaddr;
 	}

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203211258.g2LCwan07634>