diff options
author | rpj <rpj> | 2001-08-24 04:44:27 +0000 |
---|---|---|
committer | rpj <rpj> | 2001-08-24 04:44:27 +0000 |
commit | dcc0da53c266b2e6c3d54892919112ee0106c88c (patch) | |
tree | 60ef9885c6463856cd3918452fbb36a7bdbcb5bd /implement.h | |
parent | 882ec36f8d033e07d3bb272ee22554314226ea01 (diff) |
* condvar.c (pthread_cond_destroy): Remove cv element
that is no longer used.
* implement.h: Likewise.
Diffstat (limited to 'implement.h')
-rw-r--r-- | implement.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/implement.h b/implement.h index 080d9a1..5c1d7ec 100644 --- a/implement.h +++ b/implement.h @@ -219,7 +219,6 @@ struct ThreadParms { struct pthread_cond_t_ { long nWaitersBlocked; /* Number of threads blocked */ long nWaitersGone; /* Number of threads timed out */ - long nWaitersUnblocked; /* Number of threads unblocked */ long nWaitersToUnblock; /* Number of threads to unblock */ sem_t semBlockQueue; /* Queue up threads waiting for the */ /* condition to become signalled */ |