diff options
| author | David Xu <davidxu@FreeBSD.org> | 2003-09-14 22:33:32 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2003-09-14 22:33:32 +0000 |
| commit | a0efa60dc9e4a6cd187384d7a6b4256139bcfbde (patch) | |
| tree | be1b8d181acb85c565bc28ee843c31bf9aa10008 /lib/libkse | |
| parent | c5f1d9f6f8efb51ffdf0d1cfd440b72d683364ed (diff) | |
Notes
Diffstat (limited to 'lib/libkse')
| -rw-r--r-- | lib/libkse/thread/thr_cond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_cond.c b/lib/libkse/thread/thr_cond.c index 8cb8a53a2ee4..a1df0bd67ce4 100644 --- a/lib/libkse/thread/thr_cond.c +++ b/lib/libkse/thread/thr_cond.c @@ -116,7 +116,7 @@ _pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr) * structure: */ TAILQ_INIT(&pcond->c_queue); - pcond->c_flags |= COND_FLAGS_INITED; + pcond->c_flags = COND_FLAGS_INITED; pcond->c_type = type; pcond->c_mutex = NULL; pcond->c_seqno = 0; |
