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)
|
hoststart(void)
|
||||||
{
|
{
|
||||||
hostc = chancreate(sizeof(int), 0);
|
hostc = chancreate(sizeof(int), 0);
|
||||||
proccreate(hostproc, hostc, 1024);
|
proccreate(hostproc, hostc, 32*1024);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue