Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1569 → Rev 1570

/kernel/trunk/arch/ia64/src/ski/ski.c
108,6 → 108,7
void poll_keyboard(void)
{
char ch;
static char last;
 
if (kb_disable)
return;
122,10 → 123,21
}
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(). */