aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/OpenBSD-386.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/OpenBSD-386.c')
-rw-r--r--src/libthread/OpenBSD-386.c15
1 files changed, 0 insertions, 15 deletions
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)
{