Really remove it.
[glibc.git] / nptl / pthread_cond_destroy.c
blob0208d18ce40bf5d1cdf74a9cde661461cd3c2687
1 /* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <shlib-compat.h>
22 #include "pthreadP.h"
25 int
26 __pthread_cond_destroy (cond)
27 pthread_cond_t *cond;
29 /* Make sure we are alone. */
30 lll_mutex_lock (cond->__data.__lock);
32 if (cond->__data.__total_seq > cond->__data.__wakeup_seq)
34 /* If there are still some waiters which have not been
35 woken up, this is an application bug. */
36 lll_mutex_unlock (cond->__data.__lock);
37 return EBUSY;
40 /* Tell pthread_cond_*wait that this condvar is being destroyed. */
41 cond->__data.__total_seq = -1ULL;
43 /* If there are waiters which have been already signalled or
44 broadcasted, but still are using the pthread_cond_t structure,
45 pthread_cond_destroy needs to wait for them. */
46 unsigned int nwaiters = cond->__data.__nwaiters;
47 while (nwaiters >= (1 << COND_CLOCK_BITS))
49 lll_mutex_unlock (cond->__data.__lock);
51 lll_futex_wait (&cond->__data.__nwaiters, nwaiters);
53 lll_mutex_lock (cond->__data.__lock);
55 nwaiters = cond->__data.__nwaiters;
58 return 0;
60 versioned_symbol (libpthread, __pthread_cond_destroy,
61 pthread_cond_destroy, GLIBC_2_3_2);