Changeset 7f1c620 in mainline for generic/src/syscall/syscall.c
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/syscall/syscall.c
r991779c5 r7f1c620 59 59 * this syscall to facilitate it. 60 60 */ 61 static __nativesys_io(int fd, const void * buf, size_t count)61 static unative_t sys_io(int fd, const void * buf, size_t count) 62 62 { 63 63 size_t i; … … 86 86 87 87 /** Tell kernel to get keyboard/console access again */ 88 static __nativesys_debug_enable_console(void)88 static unative_t sys_debug_enable_console(void) 89 89 { 90 90 arch_grab_console(); … … 93 93 94 94 /** Dispatch system call */ 95 __native syscall_handler(__native a1, __native a2, __nativea3,96 __native a4, __nativeid)95 unative_t syscall_handler(unative_t a1, unative_t a2, unative_t a3, 96 unative_t a4, unative_t id) 97 97 { 98 __nativerc;98 unative_t rc; 99 99 100 100 if (id < SYSCALL_END)
Note:
See TracChangeset
for help on using the changeset viewer.