aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/Linux.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/Linux.c')
-rw-r--r--src/libthread/Linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libthread/Linux.c b/src/libthread/Linux.c
index 5f7f862e..969c19f2 100644
--- a/src/libthread/Linux.c
+++ b/src/libthread/Linux.c
@@ -437,8 +437,8 @@ _threadpexit(void)
}
#ifdef __arm__
-extern int getmcontext(mcontext_t*);
-extern int setmcontext(const mcontext_t*);
+#define setcontext(u) setmcontext(&(u)->uc_mcontext)
+#define getcontext(u) getmcontext(&(u)->uc_mcontext)
void
makecontext(ucontext_t *uc, void (*fn)(void), int argc, ...)