1 #ifndef AROS_I386_CPUCONTEXT_H
2 #define AROS_I386_CPUCONTEXT_H
5 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
8 Desc: CPU context definition for x86 processors
57 struct ExceptionContext
59 ULONG Flags
; /* Context flags */
77 struct FPUContext
*FPData
; /* Pointer to 8087 FPU context area */
78 struct FPXContext
*FXData
; /* Pointer to SSE context area */
83 ECF_SEGMENTS
= 1<<0, /* Segment registers are present */
84 ECF_FPU
= 1<<1, /* 8087 FPU context is present */
85 ECF_FPX
= 1<<2, /* SSE context is present */