Update.
[glibc.git] / linuxthreads / join.c
blob4fadd85299ee707fab0df46e5fe5f35a3a697d08
1 /* Linuxthreads - a simple clone()-based implementation of Posix */
2 /* threads for Linux. */
3 /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */
4 /* */
5 /* This program is free software; you can redistribute it and/or */
6 /* modify it under the terms of the GNU Library General Public License */
7 /* as published by the Free Software Foundation; either version 2 */
8 /* of the License, or (at your option) any later version. */
9 /* */
10 /* This program 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 */
13 /* GNU Library General Public License for more details. */
15 /* Thread termination and joining */
17 #include <errno.h>
18 #include <sched.h>
19 #include <unistd.h>
20 #include "pthread.h"
21 #include "internals.h"
22 #include "spinlock.h"
23 #include "restart.h"
25 void pthread_exit(void * retval)
27 pthread_descr self = thread_self();
28 pthread_descr joining;
29 struct pthread_request request;
31 /* Reset the cancellation flag to avoid looping if the cleanup handlers
32 contain cancellation points */
33 self->p_canceled = 0;
34 /* Call cleanup functions and destroy the thread-specific data */
35 __pthread_perform_cleanup();
36 __pthread_destroy_specifics();
37 /* Store return value */
38 __pthread_lock(self->p_lock);
39 self->p_retval = retval;
40 /* Say that we've terminated */
41 self->p_terminated = 1;
42 /* See if someone is joining on us */
43 joining = self->p_joining;
44 __pthread_unlock(self->p_lock);
45 /* Restart joining thread if any */
46 if (joining != NULL) restart(joining);
47 /* If this is the initial thread, block until all threads have terminated.
48 If another thread calls exit, we'll be terminated from our signal
49 handler. */
50 if (self == __pthread_main_thread && __pthread_manager_request >= 0) {
51 request.req_thread = self;
52 request.req_kind = REQ_MAIN_THREAD_EXIT;
53 __libc_write(__pthread_manager_request, (char *)&request, sizeof(request));
54 suspend(self);
56 /* Exit the process (but don't flush stdio streams, and don't run
57 atexit functions). */
58 _exit(0);
61 int pthread_join(pthread_t thread_id, void ** thread_return)
63 volatile pthread_descr self = thread_self();
64 struct pthread_request request;
65 pthread_handle handle = thread_handle(thread_id);
66 pthread_descr th;
68 __pthread_lock(&handle->h_lock);
69 if (invalid_handle(handle, thread_id)) {
70 __pthread_unlock(&handle->h_lock);
71 return ESRCH;
73 th = handle->h_descr;
74 if (th == self) {
75 __pthread_unlock(&handle->h_lock);
76 return EDEADLK;
78 /* If detached or already joined, error */
79 if (th->p_detached || th->p_joining != NULL) {
80 __pthread_unlock(&handle->h_lock);
81 return EINVAL;
83 /* If not terminated yet, suspend ourselves. */
84 if (! th->p_terminated) {
85 th->p_joining = self;
86 __pthread_unlock(&handle->h_lock);
87 suspend_with_cancellation(self);
88 /* This is a cancellation point */
89 if (self->p_canceled && self->p_cancelstate == PTHREAD_CANCEL_ENABLE) {
90 th->p_joining = NULL;
91 pthread_exit(PTHREAD_CANCELED);
93 __pthread_lock(&handle->h_lock);
95 /* Get return value */
96 if (thread_return != NULL) *thread_return = th->p_retval;
97 __pthread_unlock(&handle->h_lock);
98 /* Send notification to thread manager */
99 if (__pthread_manager_request >= 0) {
100 request.req_thread = self;
101 request.req_kind = REQ_FREE;
102 request.req_args.free.thread_id = thread_id;
103 __libc_write(__pthread_manager_request,
104 (char *) &request, sizeof(request));
106 return 0;
109 int pthread_detach(pthread_t thread_id)
111 int terminated;
112 struct pthread_request request;
113 pthread_handle handle = thread_handle(thread_id);
114 pthread_descr th;
116 __pthread_lock(&handle->h_lock);
117 if (invalid_handle(handle, thread_id)) {
118 __pthread_unlock(&handle->h_lock);
119 return ESRCH;
121 th = handle->h_descr;
122 /* If already detached, error */
123 if (th->p_detached) {
124 __pthread_unlock(&handle->h_lock);
125 return EINVAL;
127 /* If already joining, don't do anything. */
128 if (th->p_joining != NULL) {
129 __pthread_unlock(&handle->h_lock);
130 return 0;
132 /* Mark as detached */
133 th->p_detached = 1;
134 terminated = th->p_terminated;
135 __pthread_unlock(&handle->h_lock);
136 /* If already terminated, notify thread manager to reclaim resources */
137 if (terminated && __pthread_manager_request >= 0) {
138 request.req_thread = thread_self();
139 request.req_kind = REQ_FREE;
140 request.req_args.free.thread_id = thread_id;
141 __libc_write(__pthread_manager_request,
142 (char *) &request, sizeof(request));
144 return 0;