Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1441 → Rev 1440

/uspace/trunk/init/init.c
334,15 → 334,10
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;
}
aid = async_send_2(phoneid, KBD_GETCHAR, 0, 0, &kbddata);
async_wait_for(aid, NULL);
printf("%c", IPC_GET_ARG1(kbddata));
aid = async_send_2(phoneid, KBD_GETCHAR, 0, 0, &kbddata);
}
printf("Test: Hangin up\n");
438,8 → 433,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.");