Changeset f7a33de in mainline for kernel/arch/sparc32/src/exception.c
- Timestamp:
- 2013-12-12T21:30:37Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0c2d9bb
- Parents:
- 382fb4ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc32/src/exception.c
r382fb4ba rf7a33de 40 40 #include <arch/exception.h> 41 41 #include <arch/regwin.h> 42 #include <arch/machine_func.h> 42 43 #include <syscall/syscall.h> 43 44 #include <interrupt.h> … … 149 150 // printf("syscall %d\n", id); 150 151 // printf("args: 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n", a1, a2, a3, a4, a5, a6); 151 if (id == 0x4f) {152 flush_windows();153 return 0;154 }152 // if (id == 0x4f) { 153 // flush_windows(); 154 // return 0; 155 // } 155 156 156 157 return syscall_handler(a1, a2, a3, a4, a5, a6, id); 158 } 159 160 void irq_exception(unsigned int nr, istate_t *istate) 161 { 162 machine_irq_exception(nr, istate); 157 163 } 158 164
Note:
See TracChangeset
for help on using the changeset viewer.