mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
fix stack size (oops)
This commit is contained in:
parent
ab5efca82f
commit
1ccf253eb2
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ void
|
|||
hoststart(void)
|
||||
{
|
||||
hostc = chancreate(sizeof(int), 0);
|
||||
proccreate(hostproc, hostc, 1024);
|
||||
proccreate(hostproc, hostc, 32*1024);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue