Changeset 62b20f1 in mainline for kernel/arch/ia32/include/interrupt.h
- Timestamp:
- 2010-07-07T20:39:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bee2d4c
- Parents:
- 22c3444 (diff), ed7998b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/include/interrupt.h
r22c3444 r62b20f1 72 72 73 73 typedef struct istate { 74 /* 75 * The strange order of the GPRs is given by the requirement to use the 76 * istate structure for both regular interrupts and exceptions as well 77 * as for syscall handler which use this order as an optimization. 78 */ 79 uint32_t edx; 80 uint32_t ecx; 81 uint32_t ebx; 82 uint32_t esi; 83 uint32_t edi; 84 uint32_t ebp; 74 85 uint32_t eax; 75 uint32_t ebx;76 uint32_t ecx;77 uint32_t edx;78 uint32_t edi;79 uint32_t esi;80 uint32_t ebp;81 86 82 87 uint32_t ebp_frame; /* imitation of frame pointer linkage */
Note:
See TracChangeset
for help on using the changeset viewer.