Changeset 0c47db1 in mainline
- Timestamp:
- 2005-05-08T23:16:15Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c926f3
- Parents:
- 6ef72c9
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/context.h
r6ef72c9 r0c47db1 32 32 #include <arch/types.h> 33 33 34 struct fpu_context {35 __u8 fpu[512]; /* FXSAVE & FXRSTOR storage area */36 };37 34 38 35 -
arch/ia64/include/context.h
r6ef72c9 r0c47db1 32 32 #include <arch/types.h> 33 33 34 struct fpu_context {35 /* TODO: define IA-64 FPU context */36 };37 34 38 35 -
arch/mips/include/context.h
r6ef72c9 r0c47db1 32 32 #include <arch/types.h> 33 33 34 struct fpu_context {35 /* TODO: define MIPS FPU context */36 };37 34 38 35 -
include/fpu_context.h
r6ef72c9 r0c47db1 2 2 #ifndef fpu_context_h 3 3 #define fpu_context_h 4 5 6 #include <arch/fpu_context.h> 7 4 8 5 9 extern void fpu_context_save(void); -
include/proc/thread.h
r6ef72c9 r0c47db1 34 34 #include <synch/spinlock.h> 35 35 #include <arch/context.h> 36 #include <fpu_context.h> 36 37 #include <arch/types.h> 37 38 #include <typedefs.h>
Note:
See TracChangeset
for help on using the changeset viewer.