Changeset 8e7c9fe in mainline for uspace/lib/c/arch/sparc64/include/libarch/fibril.h
- Timestamp:
- 2014-09-12T03:45:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/sparc64/include/libarch/fibril.h
r3eb0c85 r8e7c9fe 37 37 38 38 #include <libarch/stack.h> 39 #include <libarch/fibril_context.h> 39 40 #include <sys/types.h> 40 41 #include <align.h> … … 51 52 } while (0) 52 53 53 /*54 * Save only registers that must be preserved across55 * function calls.56 */57 typedef struct {58 uintptr_t sp; /* %o6 */59 uintptr_t pc; /* %o7 */60 uint64_t i0;61 uint64_t i1;62 uint64_t i2;63 uint64_t i3;64 uint64_t i4;65 uint64_t i5;66 uintptr_t fp; /* %i6 */67 uintptr_t i7;68 uint64_t l0;69 uint64_t l1;70 uint64_t l2;71 uint64_t l3;72 uint64_t l4;73 uint64_t l5;74 uint64_t l6;75 uint64_t l7;76 uint64_t tp; /* %g7 */77 } context_t;78 79 54 static inline uintptr_t context_get_fp(context_t *ctx) 80 55 {
Note:
See TracChangeset
for help on using the changeset viewer.