]> gitweb.factorcode.org Git - factor.git/blob - vm/os-solaris-x86.32.hpp
2ec8bc138f38bf224274d24917de54d607b982ae
[factor.git] / vm / os-solaris-x86.32.hpp
1 #include <ucontext.h>
2
3 namespace factor
4 {
5
6 #define UAP_STACK_POINTER(ucontext) (((ucontext_t *)ucontext)->uc_mcontext.gregs[ESP])
7 #define UAP_PROGRAM_COUNTER(ucontext) (((ucontext_t *)ucontext)->uc_mcontext.gregs[EIP])
8
9 }