From 1ccf253eb2479d536f690f1805a7719a7cfe96dc Mon Sep 17 00:00:00 2001 From: rsc Date: Tue, 2 Dec 2003 21:49:45 +0000 Subject: fix stack size (oops) --- src/cmd/9term/9term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/9term/9term.c b/src/cmd/9term/9term.c index 5b15e75b..1386c158 100644 --- a/src/cmd/9term/9term.c +++ b/src/cmd/9term/9term.c @@ -151,7 +151,7 @@ void hoststart(void) { hostc = chancreate(sizeof(int), 0); - proccreate(hostproc, hostc, 1024); + proccreate(hostproc, hostc, 32*1024); } void -- cgit v1.2.3