Changeset 6b96ab44 in mainline for arch/ia64/include/context.h
- Timestamp:
- 2005-05-17T22:43:57Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1eee8383
- Parents:
- 7f1bfce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/include/context.h
r7f1bfce r6b96ab44 32 32 #include <arch/types.h> 33 33 34 #define SP_DELTA 16 34 /* 35 * context_save() and context_restore() are both leaf procedures. 36 * No need to allocate scratch area. 37 */ 38 #define SP_DELTA 0 35 39 36 40 struct context { 41 /* 42 * General registers 43 */ 37 44 __u64 r1; 38 45 __u64 r2; … … 66 73 __u64 r30; 67 74 __u64 r31; 75 76 /* 77 * Branch registers 78 */ 68 79 __u64 pc; /* b0 */ 80 __u64 b1; 81 __u64 b2; 82 __u64 b3; 83 __u64 b4; 84 __u64 b5; 85 __u64 b6; 86 __u64 b7; 87 88 /* 89 * Predicate registers 90 */ 91 __u64 pr; 92 69 93 pri_t pri; 70 94 } __attribute__ ((packed));
Note:
See TracChangeset
for help on using the changeset viewer.