Symbol: ucontext_t
include/signal.h
106
int sigreturn(ucontext_t *);
lib/libc/gen/ucontext.c
103
ret = sigreturn(__DECONST(ucontext_t *, ucp));
lib/libc/gen/ucontext.c
39
int _swapcontext(ucontext_t *, const ucontext_t *);
lib/libc/gen/ucontext.c
40
int _setcontext(const ucontext_t *);
lib/libc/gen/ucontext.c
65
_swapcontext(ucontext_t *oucp, const ucontext_t *ucp)
lib/libc/gen/ucontext.c
73
ret = sigreturn(__DECONST(ucontext_t *, ucp));
lib/libc/gen/ucontext.c
90
_setcontext(const ucontext_t *ucp)
lib/libc/x86_64/gen/makecontext.c
131
makectx_wrapper(ucontext_t *ucp, func_t func, uint64_t *args)
lib/libc/x86_64/gen/makecontext.c
137
setcontext((const ucontext_t *)ucp->uc_link);
lib/libc/x86_64/gen/makecontext.c
44
void _makecontext(ucontext_t *, void (*)(void), int, ...);
lib/libc/x86_64/gen/makecontext.c
49
static void makectx_wrapper(ucontext_t *ucp, func_t func, uint64_t *args);
lib/libc/x86_64/gen/makecontext.c
58
_makecontext(ucontext_t *ucp, void (*start)(void), int argc, ...)
lib/libc/x86_64/gen/quickcontext.c
106
makectx_quick_wrapper(ucontext_t *ucp, uint64_t *stack_top)
lib/libc/x86_64/gen/quickcontext.c
42
void _makecontext_quick(ucontext_t *);
lib/libc/x86_64/gen/quickcontext.c
44
static void makectx_quick_wrapper(ucontext_t *ucp, uint64_t *stack_top);
lib/libc/x86_64/gen/quickcontext.c
62
_makecontext_quick(ucontext_t *ucp)
lib/libc/x86_64/sys/asmcontext.c
11
ASSYM(UC_SIGMASK, offsetof(ucontext_t, uc_sigmask));
lib/libc/x86_64/sys/asmcontext.c
12
ASSYM(UC_LINK, offsetof(ucontext_t, uc_link));
lib/libc/x86_64/sys/asmcontext.c
13
ASSYM(UC_MCONTEXT, offsetof(ucontext_t, uc_mcontext));
lib/libthread_xu/thread/thr_sig.c
61
ucontext_t *ucp __unused)
sys/cpu/x86_64/include/sigframe.h
49
ucontext_t sf_uc; /* = *sf_ucontext */
sys/platform/pc64/x86_64/machdep.c
950
ucontext_t uc;
sys/platform/pc64/x86_64/machdep.c
951
ucontext_t *ucp;
sys/platform/vkernel64/x86_64/cpu_regs.c
351
ucontext_t uc;
sys/platform/vkernel64/x86_64/cpu_regs.c
352
ucontext_t *ucp;
sys/platform/vkernel64/x86_64/exception.c
204
ucontext_t *ctx = ctxp;
sys/platform/vkernel64/x86_64/exception.c
265
ucontext_t *ctx = ctxp;
sys/platform/vkernel64/x86_64/exception.c
279
ucontext_t *ctx = ctxp;
sys/sys/sysproto.h
858
ucontext_t * sigcntxp; char sigcntxp_[PAD_(ucontext_t *)];
sys/sys/ucontext.h
45
int getcontext(ucontext_t *) __returns_twice;
sys/sys/ucontext.h
46
int setcontext(const ucontext_t *) __dead2;
sys/sys/ucontext.h
47
void makecontext(ucontext_t *, void (*)(void), int, ...);
sys/sys/ucontext.h
48
int swapcontext(ucontext_t *, const ucontext_t *);
sys/sys/ucontext.h
51
void setcontext_quick(ucontext_t *);
sys/sys/ucontext.h
52
void makecontext_quick(ucontext_t *);
sys/sys/ucontext.h
53
void swapcontext_quick(ucontext_t *, ucontext_t *);