Changes in kernel/arch/amd64/include/context.h [2ddcc7b:304342e] in mainline
- File:
-
- 1 edited
-
kernel/arch/amd64/include/context.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/context.h
r2ddcc7b r304342e 38 38 #ifdef KERNEL 39 39 40 #include < typedefs.h>40 #include <arch/types.h> 41 41 42 42 /* According to ABI the stack MUST be aligned on … … 59 59 */ 60 60 typedef struct { 61 uintptr_t sp;62 uintptr_t pc;63 64 uint64_t rbx;65 uint64_t rbp;66 67 uint64_t r12;68 uint64_t r13;69 uint64_t r14;70 uint64_t r15;71 72 ipl_t ipl;61 uintptr_t sp; 62 uintptr_t pc; 63 64 uint64_t rbx; 65 uint64_t rbp; 66 67 uint64_t r12; 68 uint64_t r13; 69 uint64_t r14; 70 uint64_t r15; 71 72 ipl_t ipl; 73 73 } __attribute__ ((packed)) context_t; 74 74
Note:
See TracChangeset
for help on using the changeset viewer.
