fix drawread, add changes from david tolpin

This commit is contained in:
rsc 2004-04-19 05:56:17 +00:00
parent 904f0d0b42
commit e543c475e7
4 changed files with 36 additions and 32 deletions

View file

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