commit 1ccf253eb2479d536f690f1805a7719a7cfe96dc parent ab5efca82f34bf17a46bd6d87cc5fa887a7095a7 Author: rsc <devnull@localhost> Date: Tue, 2 Dec 2003 21:49:45 +0000 fix stack size (oops) Diffstat:
M | 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 @@ -151,7 +151,7 @@ void hoststart(void) { hostc = chancreate(sizeof(int), 0); - proccreate(hostproc, hostc, 1024); + proccreate(hostproc, hostc, 32*1024); } void