Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1570 → Rev 1569

/kernel/trunk/arch/ia64/src/ski/ski.c
108,7 → 108,6
void poll_keyboard(void)
{
char ch;
static char last;
 
if (kb_disable)
return;
123,21 → 122,10
}
else {
chardev_push_character(&ski_console, ch);
}
last = ch;
return;
}
 
if (last){
if(kbd_uspace){
chardev_push_character(&ski_uconsole, 0);
virtual_interrupt(IRQ_KBD,NULL);
}
else {
}
last = 0;
}
 
}
 
/* Called from getc(). */