Home | History | Annotate | Line # | Download | only in include
ucontext.h revision 1.2.6.2
      1  1.2.6.2  christos /* $NetBSD: ucontext.h,v 1.2.6.2 2019/06/10 22:06:50 christos Exp $ */
      2  1.2.6.2  christos 
      3  1.2.6.2  christos #ifndef _USERMODE_UCONTEXT_H
      4  1.2.6.2  christos #define _USERMODE_UCONTEXT_H
      5  1.2.6.2  christos 
      6  1.2.6.2  christos #include <sys/ucontext.h>
      7  1.2.6.2  christos #include <machine/trap.h>
      8  1.2.6.2  christos #include <machine/psl.h>
      9  1.2.6.2  christos 
     10  1.2.6.2  christos #if defined(__i386__)
     11  1.2.6.2  christos 
     12  1.2.6.2  christos #define _UC_MACHINE_EFLAGS(uc) ((uc)->uc_mcontext.__gregs[_REG_EFL])
     13  1.2.6.2  christos 
     14  1.2.6.2  christos #elif defined(__x86_64__)
     15  1.2.6.2  christos 
     16  1.2.6.2  christos #define _UC_MACHINE_RFLAGS(uc) ((uc)->uc_mcontext.__gregs[26])
     17  1.2.6.2  christos 
     18  1.2.6.2  christos #elif defined(__arm__)
     19  1.2.6.2  christos #error port me
     20  1.2.6.2  christos #else
     21  1.2.6.2  christos #error port me
     22  1.2.6.2  christos #endif
     23  1.2.6.2  christos 
     24  1.2.6.2  christos #endif /* _USERMODE_UCONTEXT_H */
     25  1.2.6.2  christos 
     26