From 1e05fdf92cf4c3ae32c52d6928f3e74000b76f6a Mon Sep 17 00:00:00 2001 From: rsc Date: Fri, 4 Nov 2005 16:34:19 +0000 Subject: use macro for getcontext (setjmp) --- src/libthread/OpenBSD-386.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/libthread/OpenBSD-386.c') diff --git a/src/libthread/OpenBSD-386.c b/src/libthread/OpenBSD-386.c index 74179743..3725f264 100644 --- a/src/libthread/OpenBSD-386.c +++ b/src/libthread/OpenBSD-386.c @@ -13,21 +13,6 @@ makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...) ucp->uc_mcontext.mc_esp = (int)sp; } -extern int getmcontext(mcontext_t*); -extern int setmcontext(mcontext_t*); - -int -getcontext(ucontext_t *uc) -{ - return getmcontext(&uc->uc_mcontext); -} - -void -setcontext(ucontext_t *uc) -{ - setmcontext(&uc->uc_mcontext); -} - int swapcontext(ucontext_t *oucp, ucontext_t *ucp) { -- cgit v1.2.3