Changes in kernel/generic/src/syscall/syscall.c [63594c0:6b10dab] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r63594c0 r6b10dab 45 45 #include <debug.h> 46 46 #include <ddi/device.h> 47 #include <interrupt.h>48 47 #include <ipc/sysipc.h> 49 48 #include <synch/futex.h> … … 67 66 #ifdef CONFIG_UDEBUG 68 67 /* 69 * An istate_t-compatible record was created on the stack by the70 * low-level syscall handler. This is the userspace space state71 * structure.72 */73 THREAD->udebug.uspace_state = istate_get(THREAD);74 75 /*76 68 * Early check for undebugged tasks. We do not lock anything as this 77 69 * test need not be precise in either direction. 70 * 78 71 */ 79 72 if (THREAD->udebug.active) … … 105 98 udebug_stoppable_end(); 106 99 } 107 108 /* Clear userspace state pointer */109 THREAD->udebug.uspace_state = NULL;110 100 #endif 111 101 … … 130 120 (syshandler_t) sys_task_get_id, 131 121 (syshandler_t) sys_task_set_name, 132 (syshandler_t) sys_task_kill,133 122 (syshandler_t) sys_program_spawn_loader, 134 123
Note:
See TracChangeset
for help on using the changeset viewer.