factor/vm/os-netbsd-x86.32.hpp

12 lines
245 B
C++
Raw Normal View History

2009-05-02 05:04:19 -04:00
#include <ucontext.h>
2009-05-04 02:46:13 -04:00
namespace factor
{
static inline unsigned int uap_fpu_status(void *uap) { return 0; }
static inline void uap_clear_fpu_status(void *uap) {}
#define UAP_STACK_POINTER(ucontext) (_UC_MACHINE_SP((ucontext_t *)ucontext))
2009-05-04 02:46:13 -04:00
}