Changes in kernel/generic/src/syscall/syscall.c [1ea99cc:057d21a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r1ea99cc r057d21a 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 }63 56 64 57 /** Dispatch system call */ … … 144 137 (syshandler_t) sys_ipc_forward_slow, 145 138 (syshandler_t) sys_ipc_wait_for_call, 139 (syshandler_t) sys_ipc_poke, 146 140 (syshandler_t) sys_ipc_hangup, 147 141 (syshandler_t) sys_ipc_register_irq, … … 166 160 167 161 /* Debug calls */ 168 (syshandler_t) sys_debug_putint,169 162 (syshandler_t) sys_debug_enable_console, 170 163 (syshandler_t) sys_debug_disable_console,
Note:
See TracChangeset
for help on using the changeset viewer.