Changeset 22e10ab in mainline for arch/sparc64/include/context.h
- Timestamp:
- 2005-12-01T13:52:13Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 414f59c
- Parents:
- 74813216
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/include/context.h
r74813216 r22e10ab 50 50 #define context_set(c, _pc, stack, size) \ 51 51 (c)->pc = ((__address) _pc) - 8; \ 52 (c)->fp = NULL; \53 52 (c)->sp = ((__address) stack) + ALIGN((size), STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA) 54 53 … … 59 58 */ 60 59 struct context { 61 __u64 i1; 62 __u64 i2; 63 __u64 i3; 64 __u64 i4; 65 __u64 i5; 66 __address fp; /* %i6 */ 67 __address pc; /* %i7 */ 68 __address sp; 60 __u64 o1; 61 __u64 o2; 62 __u64 o3; 63 __u64 o4; 64 __u64 o5; 65 __address sp; /* %o6 */ 66 __address pc; /* %o7 */ 69 67 ipl_t ipl; 70 68 };
Note:
See TracChangeset
for help on using the changeset viewer.