Replace FSF snail mail address with URLs.
[glibc.git] / nptl / pthread_join.c
blobb8834cc9c1f646eb722cd28cf8a00ed023e5e14e
1 /* Copyright (C) 2002, 2003, 2005, 2006 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, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <stdlib.h>
22 #include <atomic.h>
23 #include "pthreadP.h"
26 static void
27 cleanup (void *arg)
29 /* If we already changed the waiter ID, reset it. The call cannot
30 fail for any reason but the thread not having done that yet so
31 there is no reason for a loop. */
32 (void) atomic_compare_and_exchange_bool_acq ((struct pthread **) arg, NULL,
33 THREAD_SELF);
37 int
38 pthread_join (threadid, thread_return)
39 pthread_t threadid;
40 void **thread_return;
42 struct pthread *pd = (struct pthread *) threadid;
44 /* Make sure the descriptor is valid. */
45 if (INVALID_NOT_TERMINATED_TD_P (pd))
46 /* Not a valid thread handle. */
47 return ESRCH;
49 /* Is the thread joinable?. */
50 if (IS_DETACHED (pd))
51 /* We cannot wait for the thread. */
52 return EINVAL;
54 struct pthread *self = THREAD_SELF;
55 int result = 0;
57 /* During the wait we change to asynchronous cancellation. If we
58 are canceled the thread we are waiting for must be marked as
59 un-wait-ed for again. */
60 pthread_cleanup_push (cleanup, &pd->joinid);
62 /* Switch to asynchronous cancellation. */
63 int oldtype = CANCEL_ASYNC ();
65 if ((pd == self
66 || (self->joinid == pd
67 && (pd->cancelhandling
68 & (CANCELING_BITMASK | CANCELED_BITMASK | EXITING_BITMASK
69 | TERMINATED_BITMASK)) == 0))
70 && !CANCEL_ENABLED_AND_CANCELED (self->cancelhandling))
71 /* This is a deadlock situation. The threads are waiting for each
72 other to finish. Note that this is a "may" error. To be 100%
73 sure we catch this error we would have to lock the data
74 structures but it is not necessary. In the unlikely case that
75 two threads are really caught in this situation they will
76 deadlock. It is the programmer's problem to figure this
77 out. */
78 result = EDEADLK;
79 /* Wait for the thread to finish. If it is already locked something
80 is wrong. There can only be one waiter. */
81 else if (__builtin_expect (atomic_compare_and_exchange_bool_acq (&pd->joinid,
82 self,
83 NULL), 0))
84 /* There is already somebody waiting for the thread. */
85 result = EINVAL;
86 else
87 /* Wait for the child. */
88 lll_wait_tid (pd->tid);
91 /* Restore cancellation mode. */
92 CANCEL_RESET (oldtype);
94 /* Remove the handler. */
95 pthread_cleanup_pop (0);
98 if (__builtin_expect (result == 0, 1))
100 /* We mark the thread as terminated and as joined. */
101 pd->tid = -1;
103 /* Store the return value if the caller is interested. */
104 if (thread_return != NULL)
105 *thread_return = pd->result;
108 /* Free the TCB. */
109 __free_tcb (pd);
112 return result;