1 /* Copyright (C) 2002-2015 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/>. */
27 pthread_tryjoin_np (threadid
, thread_return
)
32 struct pthread
*pd
= (struct pthread
*) threadid
;
34 /* Make sure the descriptor is valid. */
35 if (DEBUGGING_P
&& __find_in_stack_list (pd
) == NULL
)
36 /* Not a valid thread handle. */
39 /* Is the thread joinable?. */
41 /* We cannot wait for the thread. */
45 if (pd
== self
|| self
->joinid
== pd
)
46 /* This is a deadlock situation. The threads are waiting for each
47 other to finish. Note that this is a "may" error. To be 100%
48 sure we catch this error we would have to lock the data
49 structures but it is not necessary. In the unlikely case that
50 two threads are really caught in this situation they will
51 deadlock. It is the programmer's problem to figure this
55 /* Return right away if the thread hasn't terminated yet. */
59 /* Wait for the thread to finish. If it is already locked something
60 is wrong. There can only be one waiter. */
61 if (atomic_compare_and_exchange_bool_acq (&pd
->joinid
, self
, NULL
))
62 /* There is already somebody waiting for the thread. */
65 /* Store the return value if the caller is interested. */
66 if (thread_return
!= NULL
)
67 *thread_return
= pd
->result
;