(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / nptl / pthread_join.c
blobf94128dd9623f832f31c4db4ad8f888c20a61c47
1 /* Copyright (C) 2002, 2003 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 <stdlib.h>
23 #include "atomic.h"
24 #include "pthreadP.h"
27 static void
28 cleanup (void *arg)
30 *(void **) arg = NULL;
34 int
35 pthread_join (threadid, thread_return)
36 pthread_t threadid;
37 void **thread_return;
39 struct pthread *self;
40 struct pthread *pd = (struct pthread *) threadid;
42 /* Make sure the descriptor is valid. */
43 if (INVALID_NOT_TERMINATED_TD_P (pd))
44 /* Not a valid thread handle. */
45 return ESRCH;
47 /* Is the thread joinable?. */
48 if (IS_DETACHED (pd))
49 /* We cannot wait for the thread. */
50 return EINVAL;
52 self = THREAD_SELF;
53 if (pd == self
54 || (self->joinid == pd
55 && (pd->cancelhandling
56 & (CANCELING_BITMASK | CANCELED_BITMASK | EXITING_BITMASK
57 | TERMINATED_BITMASK)) == 0))
58 /* This is a deadlock situation. The threads are waiting for each
59 other to finish. Note that this is a "may" error. To be 100%
60 sure we catch this error we would have to lock the data
61 structures but it is not necessary. In the unlikely case that
62 two threads are really caught in this situation they will
63 deadlock. It is the programmer's problem to figure this
64 out. */
65 return EDEADLK;
67 /* Wait for the thread to finish. If it is already locked something
68 is wrong. There can only be one waiter. */
69 if (__builtin_expect (atomic_compare_and_exchange_bool_acq (&pd->joinid,
70 self,
71 NULL), 0))
72 /* There is already somebody waiting for the thread. */
73 return EINVAL;
76 /* During the wait we change to asynchronous cancellation. If we
77 are cancelled the thread we are waiting for must be marked as
78 un-wait-ed for again. */
79 pthread_cleanup_push (cleanup, &pd->joinid);
81 /* Switch to asynchronous cancellation. */
82 int oldtype = CANCEL_ASYNC ();
85 /* Wait for the child. */
86 lll_wait_tid (pd->tid);
89 /* Restore cancellation mode. */
90 CANCEL_RESET (oldtype);
92 /* Remove the handler. */
93 pthread_cleanup_pop (0);
96 /* We mark the thread as terminated and as joined. */
97 pd->tid = -1;
99 /* Store the return value if the caller is interested. */
100 if (thread_return != NULL)
101 *thread_return = pd->result;
104 /* Free the TCB. */
105 __free_tcb (pd);
107 return 0;