Changes in kernel/generic/src/syscall/syscall.c [057d21a:1ea99cc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r057d21a r1ea99cc 54 54 #include <console/console.h> 55 55 #include <udebug/udebug.h> 56 57 /** Print a hex integer into klog */ 58 static unative_t sys_debug_putint(unative_t i) 59 { 60 printf("[task:0x%x]", i); 61 return 0; 62 } 56 63 57 64 /** Dispatch system call */ … … 137 144 (syshandler_t) sys_ipc_forward_slow, 138 145 (syshandler_t) sys_ipc_wait_for_call, 139 (syshandler_t) sys_ipc_poke,140 146 (syshandler_t) sys_ipc_hangup, 141 147 (syshandler_t) sys_ipc_register_irq, … … 160 166 161 167 /* Debug calls */ 168 (syshandler_t) sys_debug_putint, 162 169 (syshandler_t) sys_debug_enable_console, 163 170 (syshandler_t) sys_debug_disable_console,
Note:
See TracChangeset
for help on using the changeset viewer.