Changeset 631ca4d in mainline for arch/ia32/src/interrupt.c
- Timestamp:
- 2006-03-13T20:51:35Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5c089c3a
- Parents:
- 25d7709
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/interrupt.c
r25d7709 r631ca4d 108 108 { 109 109 interrupts_enable(); 110 if (istate->e dx< SYSCALL_END)111 istate->eax = syscall_table[istate->e dx](istate->eax, istate->ebx, istate->ecx);110 if (istate->esi < SYSCALL_END) 111 istate->eax = syscall_table[istate->esi](istate->eax, istate->ebx, istate->ecx, istate->edx); 112 112 else 113 panic("Undefined syscall %d", istate->e dx);113 panic("Undefined syscall %d", istate->esi); 114 114 interrupts_disable(); 115 115 }
Note:
See TracChangeset
for help on using the changeset viewer.