Changes in uspace/srv/hid/console/console.c [b366a6f4:1875a0c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
rb366a6f4 r1875a0c 357 357 console_serialize_end(); 358 358 359 if ( console_kcon()) {359 if (__SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE)) { 360 360 prev_console = active_console; 361 361 active_console = kernel_console; … … 711 711 console_serialize_start(); 712 712 continue; 713 case CONSOLE_KCON_ENABLE: 714 change_console(kernel_console); 715 break; 713 716 } 714 717 async_answer_3(callid, EOK, arg1, arg2, arg3); … … 830 833 } 831 834 835 /* Disable kernel output to the console */ 836 __SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE); 837 832 838 /* Initialize the screen */ 833 839 console_serialize_start();
Note:
See TracChangeset
for help on using the changeset viewer.