Changeset 6d9c49a in mainline for arch/ia32/src/interrupt.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/ia32/src/interrupt.c
r78a95d6f r6d9c49a 115 115 { 116 116 __native *stack = (__native *) st; 117 117 118 interrupts_enable(); 118 119 if (stack[-2] < SYSCALL_END) 119 120 stack[-2] = syscall_table[stack[-2]](stack[-5], stack[-3], stack[-4]); 120 121 else 121 122 panic("Undefined syscall %d", stack[-2]); 123 interrupts_disable(); 122 124 } 123 125
Note:
See TracChangeset
for help on using the changeset viewer.