summaryrefslogtreecommitdiff
path: root/implement.h
diff options
context:
space:
mode:
authorrpj <rpj>2004-10-22 15:06:41 +0000
committerrpj <rpj>2004-10-22 15:06:41 +0000
commit045278e11b53fc1ad59945427feab1cd9275988f (patch)
treeda8570a7a8962d9563814c4910e8a9d5fb6fa685 /implement.h
parentf84df26e12431bb9ecd07fbc52c804538635901f (diff)
Changes to mutexes and semaphores - considered alpha for now
Diffstat (limited to 'implement.h')
-rw-r--r--implement.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/implement.h b/implement.h
index 9cb3cb3..1f6179e 100644
--- a/implement.h
+++ b/implement.h
@@ -173,6 +173,7 @@ struct sem_t_
HANDLE event;
#else /* NEED_SEM */
int value;
+ pthread_mutex_t lock;
HANDLE sem;
#endif /* NEED_SEM */
};