Changeset f4f866c in mainline for kernel/generic/src/syscall/syscall.c
- Timestamp:
- 2010-04-23T21:42:26Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6c39a907
- Parents:
- 38aaacc2 (diff), 80badbe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
r38aaacc2 rf4f866c 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.