Changes in kernel/generic/src/syscall/syscall.c [9510be2:9dae191e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r9510be2 r9dae191e 61 61 unative_t rc; 62 62 63 /* Do userpace accounting */ 64 thread_update_accounting(true); 65 63 66 #ifdef CONFIG_UDEBUG 64 67 /* … … 95 98 } 96 99 #endif 100 101 /* Do kernel accounting */ 102 thread_update_accounting(false); 97 103 98 104 return rc; … … 138 144 (syshandler_t) sys_ipc_register_irq, 139 145 (syshandler_t) sys_ipc_unregister_irq, 140 146 141 147 /* Event notification syscalls. */ 142 148 (syshandler_t) sys_event_subscribe, … … 153 159 154 160 /* Sysinfo syscalls */ 155 (syshandler_t) sys_sysinfo_valid, 156 (syshandler_t) sys_sysinfo_value, 161 (syshandler_t) sys_sysinfo_get_tag, 162 (syshandler_t) sys_sysinfo_get_value, 163 (syshandler_t) sys_sysinfo_get_data_size, 164 (syshandler_t) sys_sysinfo_get_data, 157 165 158 166 /* Debug calls */
Note:
See TracChangeset
for help on using the changeset viewer.