Changeset e9b9e12 in mainline
- Timestamp:
- 2005-05-08T10:06:18Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa4e8d7
- Parents:
- 808e1f0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/context.h
r808e1f0 re9b9e12 32 32 #include <arch/types.h> 33 33 34 struct fpu_context { 35 __u8 fpu[512]; //FXSAVE & FXRSTOR storage area size 36 }; 37 38 34 39 struct context { 35 40 __u32 sp; … … 41 46 __u32 edi; 42 47 __u32 ebp; 43 __u32 pri; 48 __u32 pri; 49 struct fpu_context *fpu; 44 50 } __attribute__ ((packed)); 45 51 -
arch/ia64/include/context.h
r808e1f0 re9b9e12 32 32 #include <arch/types.h> 33 33 34 struct fpu_context { 35 //Don't understand IA-64 fpu environment 36 }; 37 38 34 39 struct context { 35 40 __u64 sp; -
arch/mips/include/context.h
r808e1f0 re9b9e12 31 31 32 32 #include <arch/types.h> 33 34 struct fpu_context { 35 //Don't understand MIPS fpu environment 36 }; 37 38 33 39 34 40 struct context { -
include/typedefs.h
r808e1f0 re9b9e12 39 39 typedef struct thread thread_t; 40 40 typedef struct context context_t; 41 typedef struct fpu_context fpu_context_t; 41 42 42 43 typedef struct timeout timeout_t;
Note:
See TracChangeset
for help on using the changeset viewer.