Changeset 53f9821 in mainline for arch/amd64/src/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
-
arch/amd64/src/syscall.c
r9d3e185 r53f9821 61 61 write_msr(AMD_MSR_SFMASK, 0x200); 62 62 } 63 64 /** Dispatch system call */65 __native syscall_handler(__native a1, __native a2, __native a3,66 __native a4, __native id)67 {68 if (id < SYSCALL_END)69 return syscall_table[id](a1,a2,a3,a4);70 else71 panic("Undefined syscall %d", id);72 }
Note:
See TracChangeset
for help on using the changeset viewer.