Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1440 → Rev 1441

/uspace/trunk/init/init.c
334,10 → 334,15
printf("Test: Connected: %d\n", res);
printf("Test: pinging.\n");
 
aid = async_send_2(phoneid, KBD_GETCHAR, 0, 0, &kbddata);
while (1) {
if (async_wait_timeout(aid, NULL, 1000000)) {
printf("^");
continue;
}
printf("%c", IPC_GET_ARG1(kbddata));
aid = async_send_2(phoneid, KBD_GETCHAR, 0, 0, &kbddata);
async_wait_for(aid, NULL);
printf("%c", IPC_GET_ARG1(kbddata));
}
printf("Test: Hangin up\n");
433,8 → 438,8
// test_as_area_send();
// test_pci();
// test_kbd();
test_time();
// test_async_kbd();
// test_time();
test_async_kbd();
// test_fb();
 
printf("Hello\nThis is Init\n\nBye.");