]> gitweb.factorcode.org Git - factor.git/blob - vm/os-linux-arm.hpp
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / vm / os-linux-arm.hpp
1 #include <ucontext.h>
2 #include <asm/unistd.h>
3 #include <sys/syscall.h>
4
5 namespace factor
6 {
7
8 inline static void *ucontext_stack_pointer(void *uap)
9 {
10         ucontext_t *ucontext = (ucontext_t *)uap;
11         return (void *)ucontext->uc_mcontext.arm_sp;
12 }
13
14 #define UAP_PROGRAM_COUNTER(ucontext) \
15         (((ucontext_t *)(ucontext))->uc_mcontext.arm_pc)
16
17 void flush_icache(cell start, cell len);
18
19 }