- Timestamp:
- 2011-06-24T15:58:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7250d2c
- Parents:
- ee2fa30a
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/syscalls.c
ree2fa30a rb366a6f4 80 80 [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data", 5, V_ERRNO }, 81 81 82 [SYS_DEBUG_ ENABLE_CONSOLE] = { "debug_enable_console", 0, V_ERRNO },82 [SYS_DEBUG_ACTIVATE_CONSOLE] = { "debug_activate_console", 0, V_ERRNO }, 83 83 [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox", 1, V_ERRNO } 84 84 }; -
uspace/lib/c/generic/io/console.c
ree2fa30a rb366a6f4 76 76 bool console_kcon(void) 77 77 { 78 #if 079 78 return __SYSCALL0(SYS_DEBUG_ACTIVATE_CONSOLE); 80 #endif81 82 return false;83 79 } 84 80 -
uspace/lib/c/include/ipc/console.h
ree2fa30a rb366a6f4 48 48 CONSOLE_SET_COLOR, 49 49 CONSOLE_SET_RGB_COLOR, 50 CONSOLE_CURSOR_VISIBILITY, 51 CONSOLE_KCON_ENABLE 50 CONSOLE_CURSOR_VISIBILITY 52 51 } console_request_t; 53 52 -
uspace/srv/hid/console/console.c
ree2fa30a rb366a6f4 357 357 console_serialize_end(); 358 358 359 if ( __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE)) {359 if (console_kcon()) { 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;716 713 } 717 714 async_answer_3(callid, EOK, arg1, arg2, arg3); … … 833 830 } 834 831 835 /* Disable kernel output to the console */836 __SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE);837 838 832 /* Initialize the screen */ 839 833 console_serialize_start();
Note:
See TracChangeset
for help on using the changeset viewer.