Symbol: makecontext
include/ucontext.h
47
void makecontext(ucontext_t *, void (*)(), int, ...);
lib/libc/arch/alpha/gen/makecontext.c
49
makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...)
lib/libc/arch/hppa/gen/makecontext.c
52
makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...)
lib/libc/arch/i386/gen/makecontext.c
53
makecontext(ucp, func, argc, va_alist)
lib/libc/arch/mips/gen/makecontext.c
49
makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...)
lib/libpuffs/callcontext.c
276
makecontext(&pcc->pcc_uc, (void *)func, 1, (uintptr_t)pcc);
lib/librumpuser/rumpfiber.c
203
makecontext(ctx, (void (*)(void))f, 1, data);
sys/arch/usermode/usermode/thunk.c
398
makecontext(ucp, func, 0);
sys/arch/usermode/usermode/thunk.c
401
makecontext(ucp, func, 1, arg1);
sys/arch/usermode/usermode/thunk.c
404
makecontext(ucp, func, 2, arg1, arg2);
sys/arch/usermode/usermode/thunk.c
407
makecontext(ucp, func, 3, arg1, arg2, arg3);
sys/arch/usermode/usermode/thunk.c
410
makecontext(ucp, func, 4, arg1, arg2, arg3, arg4);
tests/kernel/t_signal_and_sp.c
263
makecontext(&uc, &contextspfunc, 0);
tests/kernel/t_signal_and_sp.c
284
makecontext(&uc, &contextspfunc, 0);
tests/kernel/t_signal_and_sp.c
329
makecontext(&uc1, &contextnoop, 0);
tests/kernel/t_signal_and_sp.c
334
makecontext(&uc2, &contextspfunc, 0);
tests/kernel/t_signal_and_sp.c
356
makecontext(&uc1, &contextnoop, 0);
tests/kernel/t_signal_and_sp.c
361
makecontext(&uc2, &contextspfunc, 0);
tests/lib/libc/sys/t_getcontext.c
111
makecontext(&uc[i], (void *)run, 10, i,
tests/lib/libc/sys/t_setrlimit.c
477
makecontext(&c, func, 1, &lwpid);
tests/lib/libc/sys/t_swapcontext.c
88
makecontext(&nctx, swapfunc, 0);
tests/lib/libpthread/t_swapcontext.c
74
makecontext(&nctx, swapfunc, 0);