10#ifndef UTIL_UCONTEXT_H
11#define UTIL_UCONTEXT_H
14# include <libucontext/libucontext.h>
43# if defined(__FreeBSD__)
44 return (uintptr_t)((
struct sigcontext *)context)->sc_eip;
45# elif defined(__linux__)
47 return (uintptr_t)((ucontext_t *)context)->uc_mcontext.arm_pc;
48# elif defined(__x86_64__)
49 return (uintptr_t)((ucontext_t *)context)->uc_mcontext.gregs[REG_RIP];
50# elif defined(__i386__)
51 return (uintptr_t)((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP];
53# error "Unsupported Linux architecture"
56# error "Operating system unsupported"
66# if defined(__FreeBSD__)
67 ((
struct sigcontext *)context)->sc_eip = (
unsigned int)func;
68# elif defined(__linux__)
70 ((ucontext_t *)context)->uc_mcontext.arm_lr = func;
71 ((ucontext_t *)context)->uc_mcontext.arm_pc = func;
72# elif defined(__x86_64__)
73 ((ucontext_t *)context)->uc_mcontext.gregs[REG_RIP] = (greg_t)func;
74# elif defined(__i386__)
75 ((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP] = func;
77# error "Unsupported Linux architecture"
80# error "Operating system unsupported"
90#if defined(__LP64__) || defined(DOXYGEN)
110static inline void makecontext64(ucontext_t *context,
void (*func)(
void),
void* arg) {
111# if defined(__LP64__)
116# if defined(__x86_64__)
117# if defined(__linux__)
118 context->uc_mcontext.gregs[REG_R14] = (greg_t)func;
119 context->uc_mcontext.gregs[REG_R15] = (greg_t)arg;
125 makecontext(context, (
void (*)(
void))func, 1, arg);
110static inline void makecontext64(ucontext_t *context,
void (*func)(
void),
void* arg) {
…}
void _start_task_func64(void)
Invokes thread task function.
static void _context_set_fptr(ucontext_t *context, uintptr_t func)
Retrieves function pointer generated during calls to makecontext/setcontext/swapcontext
static uintptr_t _context_get_fptr(ucontext_t *context)
Retrieves function pointer generated during calls to makecontext/setcontext/swapcontext
static void makecontext64(ucontext_t *context, void(*func)(void), void *arg)
Like makecontext, allows 64-bit wide function argument on 64-bit platforms.