fix stack size (oops)

This commit is contained in:
rsc 2003-12-02 21:49:45 +00:00
parent ab5efca82f
commit 1ccf253eb2

View file

@ -151,7 +151,7 @@ void
hoststart(void) hoststart(void)
{ {
hostc = chancreate(sizeof(int), 0); hostc = chancreate(sizeof(int), 0);
proccreate(hostproc, hostc, 1024); proccreate(hostproc, hostc, 32*1024);
} }
void void