Changeset 6d9c49a in mainline for arch/amd64/src/syscall.c
- Timestamp:
- 2006-03-13T19:39:30Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45d6add
- Parents:
- 78a95d6f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/syscall.c
r78a95d6f r6d9c49a 63 63 64 64 /** Dispatch system call */ 65 __native syscall_handler(__native id, __native a1, __native a2, __native a3) 65 __native syscall_handler(__native a1, __native a2, __native a3, 66 __native id) 66 67 { 67 interrupts_enable();68 68 if (id < SYSCALL_END) 69 69 return syscall_table[id](a1,a2,a3); 70 70 else 71 71 panic("Undefined syscall %d", id); 72 interrupts_disable();73 72 }
Note:
See TracChangeset
for help on using the changeset viewer.