diff options
author | rpj <rpj> | 2004-10-22 15:06:41 +0000 |
---|---|---|
committer | rpj <rpj> | 2004-10-22 15:06:41 +0000 |
commit | 045278e11b53fc1ad59945427feab1cd9275988f (patch) | |
tree | da8570a7a8962d9563814c4910e8a9d5fb6fa685 /implement.h | |
parent | f84df26e12431bb9ecd07fbc52c804538635901f (diff) |
Changes to mutexes and semaphores - considered alpha for now
Diffstat (limited to 'implement.h')
-rw-r--r-- | implement.h | 1 |
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 */ }; |