- Timestamp:
- 2014-08-12T07:14:50Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce3efa0
- Parents:
- 238869ca
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/syscalls.c
r238869ca rf6ab787 79 79 [SYS_SYSINFO_GET_DATA] = { "sysinfo_get_data", 5, V_ERRNO }, 80 80 81 [SYS_DEBUG_ ACTIVATE_CONSOLE] = { "debug_activate_console", 0, V_ERRNO },81 [SYS_DEBUG_CONSOLE] = { "debug_console", 0, V_ERRNO }, 82 82 [SYS_IPC_CONNECT_KBOX] = { "ipc_connect_kbox", 1, V_ERRNO } 83 83 }; -
uspace/lib/c/generic/io/console.c
r238869ca rf6ab787 75 75 bool console_kcon(void) 76 76 { 77 return __SYSCALL0(SYS_DEBUG_ ACTIVATE_CONSOLE);77 return __SYSCALL0(SYS_DEBUG_CONSOLE); 78 78 } 79 79 -
uspace/srv/hid/compositor/compositor.c
r238869ca rf6ab787 2063 2063 fibril_mutex_unlock(&viewport_list_mtx); 2064 2064 } else if (kconsole_switch) { 2065 __SYSCALL0(SYS_DEBUG_ ACTIVATE_CONSOLE);2065 __SYSCALL0(SYS_DEBUG_CONSOLE); 2066 2066 } else { 2067 2067 window_event_t *event = (window_event_t *) malloc(sizeof(window_event_t));
Note:
See TracChangeset
for help on using the changeset viewer.