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