summaryrefslogtreecommitdiffstats
path: root/src/libthread/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/thread.c')
-rw-r--r--src/libthread/thread.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libthread/thread.c b/src/libthread/thread.c
index 61d1aa2a..455d8da0 100644
--- a/src/libthread/thread.c
+++ b/src/libthread/thread.c
@@ -327,6 +327,12 @@ procdata(void)
return &proc()->udata;
}
+void**
+threaddata(void)
+{
+ return &proc()->thread->udata;
+}
+
extern Jmp *(*_notejmpbuf)(void);
static Jmp*
threadnotejmp(void)