summaryrefslogtreecommitdiffstats
path: root/lib/libkse/thread/thr_join.c
diff options
context:
space:
mode:
authordeischen <deischen@FreeBSD.org>2000-11-09 05:08:26 +0000
committerdeischen <deischen@FreeBSD.org>2000-11-09 05:08:26 +0000
commit69c0393f8e4b9bd522c1e9afe2f481e040dcbac3 (patch)
treea9d526e7ccca466ce303b1c6202f807942d274db /lib/libkse/thread/thr_join.c
parente1d8dafb1c246b5ecfd3bf52b6e9ff947e171314 (diff)
downloadFreeBSD-src-69c0393f8e4b9bd522c1e9afe2f481e040dcbac3.zip
FreeBSD-src-69c0393f8e4b9bd522c1e9afe2f481e040dcbac3.tar.gz
Don't needlessly poll file descriptors when there are no
file descriptors needing to be polled (Doh!). Reported by Dan Nelson <dnelson@emsphone.com>. Don't install and start the scheduling timer until the first thread is created. This prevents the overhead of having a periodic scheduling signal in a single threaded program. Reported by Dan Nelson <dnelson@emsphone.com>. Allow builtin longjmps out of application installed signal handlers without the need perform any post-handler cleanup: o Change signal handling to save the threads interrupted context on the stack. The threads current context is now always stored in the same place (in the pthread). If and when a signal handler returns, the interrupted context is copied back to the storage area in the pthread. o Before calling invoking a signal handler for a thread, back the thread out of any internal waiting queues (mutex, CV, join, etc) to which it belongs. Rework uthread_info.c a bit to make it easier to change the format of a thread dump. Use an alternal signal stack for the thread library's signal handler. This allows us to fiddle with the main threads stack without fear of it being in use. Reviewed by: jasone
Diffstat (limited to 'lib/libkse/thread/thr_join.c')
-rw-r--r--lib/libkse/thread/thr_join.c104
1 files changed, 66 insertions, 38 deletions
diff --git a/lib/libkse/thread/thr_join.c b/lib/libkse/thread/thr_join.c
index cda31bd..b4a7c61 100644
--- a/lib/libkse/thread/thr_join.c
+++ b/lib/libkse/thread/thr_join.c
@@ -74,46 +74,74 @@ pthread_join(pthread_t pthread, void **thread_return)
else if (pthread->state != PS_DEAD) {
PTHREAD_ASSERT_NOT_IN_SYNCQ(_thread_run);
- /* Clear the interrupted flag: */
- _thread_run->interrupted = 0;
-
/*
- * Protect against being context switched out while
- * adding this thread to the join queue.
+ * Enter a loop in case this thread is woken prematurely
+ * in order to invoke a signal handler:
*/
- _thread_kern_sig_defer();
-
- /* Add the running thread to the join queue: */
- TAILQ_INSERT_TAIL(&(pthread->join_queue), _thread_run, sqe);
- _thread_run->flags |= PTHREAD_FLAGS_IN_JOINQ;
- _thread_run->data.thread = pthread;
-
- /* Schedule the next thread: */
- _thread_kern_sched_state(PS_JOIN, __FILE__, __LINE__);
-
- if (_thread_run->interrupted != 0) {
- TAILQ_REMOVE(&(pthread->join_queue), _thread_run, sqe);
- _thread_run->flags &= ~PTHREAD_FLAGS_IN_JOINQ;
+ for (;;) {
+ /* Clear the interrupted flag: */
+ _thread_run->interrupted = 0;
+
+ /*
+ * Protect against being context switched out while
+ * adding this thread to the join queue.
+ */
+ _thread_kern_sig_defer();
+
+ /* Add the running thread to the join queue: */
+ TAILQ_INSERT_TAIL(&(pthread->join_queue),
+ _thread_run, sqe);
+ _thread_run->flags |= PTHREAD_FLAGS_IN_JOINQ;
+ _thread_run->data.thread = pthread;
+
+ /* Schedule the next thread: */
+ _thread_kern_sched_state(PS_JOIN, __FILE__, __LINE__);
+
+ if ((_thread_run->flags & PTHREAD_FLAGS_IN_JOINQ) != 0) {
+ TAILQ_REMOVE(&(pthread->join_queue),
+ _thread_run, sqe);
+ _thread_run->flags &= ~PTHREAD_FLAGS_IN_JOINQ;
+ }
+ _thread_run->data.thread = NULL;
+
+ _thread_kern_sig_undefer();
+
+ if (_thread_run->interrupted != 0) {
+ if (_thread_run->continuation != NULL)
+ _thread_run->continuation(_thread_run);
+ /*
+ * This thread was interrupted, probably to
+ * invoke a signal handler. Make sure the
+ * target thread is still joinable.
+ */
+ if (((_find_thread(pthread) != 0) &&
+ (_find_dead_thread(pthread) != 0)) ||
+ ((pthread->attr.flags &
+ PTHREAD_DETACHED) != 0)) {
+ /* Return an error: */
+ ret = ESRCH;
+
+ /* We're done; break out of the loop. */
+ break;
+ }
+ else if (pthread->state == PS_DEAD) {
+ /* We're done; break out of the loop. */
+ break;
+ }
+ } else {
+ /*
+ * The thread return value and error are set
+ * by the thread we're joining to when it
+ * exits or detaches:
+ */
+ ret = _thread_run->error;
+ if ((ret == 0) && (thread_return != NULL))
+ *thread_return = _thread_run->ret;
+
+ /* We're done; break out of the loop. */
+ break;
+ }
}
- _thread_run->data.thread = NULL;
-
- _thread_kern_sig_undefer();
-
- if (_thread_run->interrupted != 0 &&
- _thread_run->continuation != NULL)
- _thread_run->continuation(_thread_run);
-
- /* Check if the thread is not detached: */
- if ((pthread->attr.flags & PTHREAD_DETACHED) == 0) {
- /* Check if the return value is required: */
- if (thread_return)
- /* Return the thread's return value: */
- *thread_return = pthread->ret;
- }
- else
- /* Return an error: */
- ret = ESRCH;
-
/* Check if the return value is required: */
} else if (thread_return != NULL)
/* Return the thread's return value: */
@@ -129,7 +157,7 @@ void
_join_backout(pthread_t pthread)
{
_thread_kern_sig_defer();
- if (pthread->state == PS_JOIN) {
+ if ((pthread->flags & PTHREAD_FLAGS_IN_JOINQ) != 0) {
TAILQ_REMOVE(&pthread->data.thread->join_queue, pthread, sqe);
_thread_run->flags &= ~PTHREAD_FLAGS_IN_JOINQ;
}
OpenPOWER on IntegriCloud