Changeset 0f3fc9b in mainline for kernel/arch/sparc64/include
- Timestamp:
- 2007-01-22T13:34:55Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 726e1043
- Parents:
- e7b7be3f
- Location:
- kernel/arch/sparc64/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/context.h
re7b7be3f r0f3fc9b 57 57 * function calls. 58 58 */ 59 struct context {59 typedef struct { 60 60 uintptr_t sp; /* %o6 */ 61 61 uintptr_t pc; /* %o7 */ … … 77 77 uint64_t l7; 78 78 ipl_t ipl; 79 } ;79 } context_t; 80 80 81 81 #endif -
kernel/arch/sparc64/include/fpu_context.h
re7b7be3f r0f3fc9b 41 41 #define FPU_CONTEXT_ALIGN 8 42 42 43 struct fpu_context {43 typedef struct { 44 44 uint64_t d[32]; 45 45 uint64_t fsr; 46 } ;46 } fpu_context_t; 47 47 48 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.