make stack requirements more explicit.

This commit is contained in:
rsc 2004-04-21 22:46:39 +00:00
parent 3151bc58b8
commit 63b6732301
3 changed files with 3 additions and 2 deletions

View file

@ -74,7 +74,7 @@ initkeyboard(char *file)
if(kc == nil)
return nil;
kc->c = chancreate(sizeof(Rune), 20);
threadcreate(_ioproc, kc, 16384);
threadcreate(_ioproc, kc, 32768);
return kc;
}