Subversion Repositories HelenOS

Rev

Rev 3962 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3962 Rev 4044
Line 258... Line 258...
258
 
258
 
259
/** Kernel thread for polling keyboard. */
259
/** Kernel thread for polling keyboard. */
260
void kkbdpoll(void *arg)
260
void kkbdpoll(void *arg)
261
{
261
{
262
    while (1) {
262
    while (1) {
-
 
263
        if (!silent) {
263
        poll_keyboard();
264
            poll_keyboard();
-
 
265
        }
264
        thread_usleep(POLL_INTERVAL);
266
        thread_usleep(POLL_INTERVAL);
265
    }
267
    }
266
}
268
}
267
 
269
 
268
/** @}
270
/** @}