Changeset 414f59c in mainline for arch/sparc64/include/context.h
- Timestamp:
- 2005-12-01T20:27:22Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8ac5fe7
- Parents:
- 22e10ab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/include/context.h
r22e10ab r414f59c 48 48 #endif 49 49 50 #define context_set(c, _pc, stack, size) \ 51 (c)->pc = ((__address) _pc) - 8; \ 52 (c)->sp = ((__address) stack) + ALIGN((size), STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA) 50 #define context_set(c, _pc, stack, size) \ 51 (c)->pc = ((__address) _pc) - 8; \ 52 (c)->sp = ((__address) stack) + ALIGN((size), STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA); \ 53 (c)->fp = -STACK_BIAS 54 53 55 54 56 /* … … 65 67 __address sp; /* %o6 */ 66 68 __address pc; /* %o7 */ 69 __address fp; 67 70 ipl_t ipl; 68 71 };
Note:
See TracChangeset
for help on using the changeset viewer.