Changeset 53f9821 in mainline for arch/mips32/src/exception.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/mips32/src/exception.c
r9d3e185 r53f9821 41 41 #include <console/kconsole.h> 42 42 #include <arch/debugger.h> 43 #include <syscall/syscall.h>44 43 45 44 static char * exctable[] = { … … 130 129 } 131 130 132 __native syscall_handler(__native a0, __native a1, __native a2,133 __native a3, __native sysnum)134 {135 if (sysnum < SYSCALL_END)136 return syscall_table[sysnum](a0,a1,a2,a3);137 panic("Undefined syscall %d", sysnum);138 }139 140 131 /** Handle syscall userspace call */ 141 132 static void syscall_exception(int n, istate_t *istate)
Note:
See TracChangeset
for help on using the changeset viewer.