Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/amd64/include/istate.h

    r598f90e r63f8966  
    3636#define LIBC_amd64_ISTATE_H_
    3737
    38 #include <arch/istate.h>
     38#include <sys/types.h>
     39
     40/** Interrupt context.
     41 *
     42 * This is a copy of the kernel definition with which it must be kept in sync.
     43 */
     44typedef struct istate {
     45        uint64_t rax;
     46        uint64_t rcx;
     47        uint64_t rdx;
     48        uint64_t rsi;
     49        uint64_t rdi;
     50        uint64_t r8;
     51        uint64_t r9;
     52        uint64_t r10;
     53        uint64_t r11;
     54        uint64_t rbp;
     55        uint64_t error_word;
     56        uint64_t rip;
     57        uint64_t cs;
     58        uint64_t rflags;
     59        uint64_t stack[]; /* Additional data on stack */
     60} istate_t;
     61
     62static inline uintptr_t istate_get_pc(istate_t *istate)
     63{
     64        return istate->rip;
     65}
     66
     67static inline uintptr_t istate_get_fp(istate_t *istate)
     68{
     69        return istate->rbp;
     70}
    3971
    4072#endif
Note: See TracChangeset for help on using the changeset viewer.