Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1648 → Rev 1647

/uspace/trunk/console/console.c
288,6 → 288,7
callid = async_get_call(&call);
switch (IPC_GET_METHOD(call)) {
case IPC_M_PHONE_HUNGUP:
ipc_answer_fast(callid,0,0,0);
/* TODO: Handle hangup */
return;
case KBD_PUSHCHAR:
367,6 → 368,9
ipc_answer_fast(fifo_pop(conn->keyrequests), ENOENT, 0, 0);
break;
}
/* Commit hangup */
ipc_answer_fast(callid, 0,0,0);
conn->used = 0;
return;
case CONSOLE_PUTCHAR: