debugging for sam, and an old fix forgotten

This commit is contained in:
rsc 2005-01-07 18:03:36 +00:00
parent b80755cf2d
commit a19ff5b204
11 changed files with 28 additions and 7 deletions

View file

@ -33,20 +33,27 @@ void
initio(void)
{
threadsetname("main");
if(protodebug) print("mouse\n");
mousectl = initmouse(nil, display->image);
if(mousectl == nil){
fprint(2, "samterm: mouse init failed: %r\n");
threadexitsall("mouse");
}
mousep = &mousectl->m;
if(protodebug) print("kbd\n");
keyboardctl = initkeyboard(nil);
if(keyboardctl == nil){
fprint(2, "samterm: keyboard init failed: %r\n");
threadexitsall("kbd");
}
if(protodebug) print("hoststart\n");
hoststart();
if(plumbstart() < 0)
if(protodebug) print("plumbstart\n");
if(plumbstart() < 0){
if(protodebug) print("extstart\n");
extstart();
}
if(protodebug) print("initio done\n");
}
void