xv6 seems to work fine on uniprocessor now.
so O_CREATE should not truncate
but O_TRUNC should
-make it work on one cpu
make it work on a real machine
release before acquire at end of sleep?
check 2nd disk (i.e. if not in .bochsrc)
acquire(&kbd_lock);
- while(kbd_w == kbd_r)
+ while(kbd_w == kbd_r) {
sleep(&kbd_r, &kbd_lock);
+ }
while(n > 0 && kbd_w != kbd_r){
*dst = (kbd_buf[kbd_r]) & 0xff;
devsw[CONSOLE].d_write = console_write;
devsw[CONSOLE].d_read = console_read;
- ioapic_enable (IRQ_KBD, 1);
+ ioapic_enable (IRQ_KBD, 0);
use_console_lock = 1;
}