summaryrefslogtreecommitdiff
path: root/pr/include/md/_beos.h
diff options
context:
space:
mode:
Diffstat (limited to 'pr/include/md/_beos.h')
-rw-r--r--pr/include/md/_beos.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/pr/include/md/_beos.h b/pr/include/md/_beos.h
index 8b56dec3..2cb25407 100644
--- a/pr/include/md/_beos.h
+++ b/pr/include/md/_beos.h
@@ -72,8 +72,9 @@
/* Define threading functions and objects as native BeOS */
struct _MDThread {
thread_id tid; /* BeOS thread handle */
- bool is_joinable; /* TRUE if PR_JOINABLE */
- bool is_joining; /* TRUE if we were woken up to join */
+ sem_id joinSem; /* sems used to synchronzie joining */
+ PRBool is_joining; /* TRUE if someone is currently waiting to
+ join this thread */
};
struct _MDThreadStack {