Changes in kernel/generic/src/syscall/syscall.c [9510be2:057d21a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r9510be2 r057d21a 62 62 63 63 #ifdef CONFIG_UDEBUG 64 bool debug; 65 64 66 /* 65 67 * Early check for undebugged tasks. We do not lock anything as this 66 * test need not be precise in either direction.68 * test need not be precise in either way. 67 69 */ 68 if (THREAD->udebug.active) { 70 debug = THREAD->udebug.active; 71 72 if (debug) { 69 73 udebug_syscall_event(a1, a2, a3, a4, a5, a6, id, 0, false); 70 74 } … … 83 87 84 88 #ifdef CONFIG_UDEBUG 85 if ( THREAD->udebug.active) {89 if (debug) { 86 90 udebug_syscall_event(a1, a2, a3, a4, a5, a6, id, rc, true); 87 91 … … 107 111 (syshandler_t) sys_thread_exit, 108 112 (syshandler_t) sys_thread_get_id, 109 (syshandler_t) sys_thread_usleep,110 113 111 114 (syshandler_t) sys_task_get_id, … … 114 117 115 118 /* Synchronization related syscalls. */ 116 (syshandler_t) sys_futex_sleep ,119 (syshandler_t) sys_futex_sleep_timeout, 117 120 (syshandler_t) sys_futex_wakeup, 118 121 (syshandler_t) sys_smc_coherence,
Note:
See TracChangeset
for help on using the changeset viewer.