Changeset 53f9821 in mainline for generic/src/syscall/syscall.c
- Timestamp:
- 2006-03-20T20:32:17Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 018d957e
- Parents:
- 9d3e185
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/syscall/syscall.c
r9d3e185 r53f9821 63 63 } 64 64 65 /** Dispatch system call */ 66 __native syscall_handler(__native a1, __native a2, __native a3, 67 __native a4, __native id) 68 { 69 if (id < SYSCALL_END) 70 return syscall_table[id](a1,a2,a3,a4); 71 else 72 panic("Undefined syscall %d", id); 73 } 74 65 75 syshandler_t syscall_table[SYSCALL_END] = { 66 76 sys_io,
Note:
See TracChangeset
for help on using the changeset viewer.