]> gitweb.factorcode.org Git - factor.git/blob - vm/os-netbsd-x86.64.hpp
3e9499899304cdb69211f39e433e41126f14449f
[factor.git] / vm / os-netbsd-x86.64.hpp
1 #include <ucontext.h>
2
3 namespace factor
4 {
5
6 static inline unsigned int uap_fpu_status(void *uap) { return 0; }
7 static inline void uap_clear_fpu_status(void *uap) {}
8
9 #define UAP_STACK_POINTER(ucontext) (((ucontext_t *)ucontext)->uc_mcontext.__gregs[_REG_URSP])
10
11 }