Changeset 87b4baa in mainline for kernel/generic/src/syscall/syscall.c
- Timestamp:
- 2010-12-17T20:16:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 424558a
- Parents:
- 463e734 (diff), bbc74af7 (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
r463e734 r87b4baa 56 56 57 57 /** Dispatch system call */ 58 unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3,59 unative_t a4, unative_t a5, unative_t a6, unative_t id)58 sysarg_t syscall_handler(sysarg_t a1, sysarg_t a2, sysarg_t a3, 59 sysarg_t a4, sysarg_t a5, sysarg_t a6, sysarg_t id) 60 60 { 61 61 /* Do userpace accounting */ … … 74 74 #endif 75 75 76 unative_t rc;76 sysarg_t rc; 77 77 if (id < SYSCALL_END) { 78 78 rc = syscall_table[id](a1, a2, a3, a4, a5, a6); … … 147 147 (syshandler_t) sys_ipc_register_irq, 148 148 (syshandler_t) sys_ipc_unregister_irq, 149 (syshandler_t) sys_ipc_connect_kbox, 149 150 150 151 /* Event notification syscalls. */ … … 169 170 /* Debug calls */ 170 171 (syshandler_t) sys_debug_enable_console, 171 (syshandler_t) sys_debug_disable_console, 172 173 (syshandler_t) sys_ipc_connect_kbox 172 (syshandler_t) sys_debug_disable_console 174 173 }; 175 174
Note:
See TracChangeset
for help on using the changeset viewer.