diff options
| author | David Xu <davidxu@FreeBSD.org> | 2006-09-06 04:04:10 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2006-09-06 04:04:10 +0000 |
| commit | bddd24cd9c3e6144282ff7eaa92a3ad032e5be7b (patch) | |
| tree | 7044b040d8f18506b5f3294848fd18b67eaf0bd2 /lib/libthr/thread/thr_sem.c | |
| parent | b2d24734cd9e4cf85ca2015468e1b29f8468bfb7 (diff) | |
Notes
Diffstat (limited to 'lib/libthr/thread/thr_sem.c')
| -rw-r--r-- | lib/libthr/thread/thr_sem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_sem.c b/lib/libthr/thread/thr_sem.c index 88a3cbd500ea..ad10aafd4e04 100644 --- a/lib/libthr/thread/thr_sem.c +++ b/lib/libthr/thread/thr_sem.c @@ -81,7 +81,7 @@ sem_alloc(unsigned int value, semid_t semid, int system_sem) errno = ENOSPC; return (NULL); } - _thr_umtx_init((umtx_t *)&sem->lock); + bzero(sem, sizeof(*sem)); /* * Fortunatly count and nwaiters are adjacency, so we can * use umtx_wait to wait on it, umtx_wait needs an address |
