tfix stack size (oops) - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 1ccf253eb2479d536f690f1805a7719a7cfe96dc
(DIR) parent ab5efca82f34bf17a46bd6d87cc5fa887a7095a7
(HTM) 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(-)
---
(DIR) diff --git a/src/cmd/9term/9term.c b/src/cmd/9term/9term.c
t@@ -151,7 +151,7 @@ void
hoststart(void)
{
hostc = chancreate(sizeof(int), 0);
- proccreate(hostproc, hostc, 1024);
+ proccreate(hostproc, hostc, 32*1024);
}
void