Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1646 → Rev 1647

/uspace/trunk/console/console.c
372,7 → 372,6
/* Commit hangup */
ipc_answer_fast(callid, 0,0,0);
conn->used = 0;
async_serialize_end();
return;
case CONSOLE_PUTCHAR:
write_char(consnum, IPC_GET_ARG1(call));
/uspace/trunk/console/gcons.c
135,6 → 135,8
if (active_console == KERNEL_CONSOLE) {
for (i=0; i < CONSOLE_COUNT; i++)
redraw_state(i);
if (animation != -1)
async_msg(fbphone, FB_ANIM_START, animation);
} else {
if (console_state[active_console] == CONS_DISCONNECTED_SEL)
console_state[active_console] = CONS_DISCONNECTED;
216,6 → 218,9
console_state[active_console] = CONS_IDLE;
redraw_state(active_console);
 
if (animation != -1)
async_msg(fbphone, FB_ANIM_STOP, animation);
 
active_console = KERNEL_CONSOLE; /* Set to kernel console */
vp_switch(0);
}