diff options
author | jake <jake@FreeBSD.org> | 2003-04-03 03:34:50 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2003-04-03 03:34:50 +0000 |
commit | 5b2b2811a19544037b626ef44e598691b3b2f525 (patch) | |
tree | d95f2bb910f0eebc71243aa5c4f13994c66da5ec /lib/libthr/thread/thr_create.c | |
parent | 12c39a9461b4db1d8608dca0cb0cfc47ff8b234e (diff) | |
download | FreeBSD-src-5b2b2811a19544037b626ef44e598691b3b2f525.zip FreeBSD-src-5b2b2811a19544037b626ef44e598691b3b2f525.tar.gz |
- Pass a ucontext_t to _set_curthread. If non-NULL the new thread is set
as curthread in the new context, so that it will be set automatically when
the thread is switched to. This fixes a race where we'd run for a little
while with curthread unset in _thread_start.
Reviewed by: jeff
Diffstat (limited to 'lib/libthr/thread/thr_create.c')
-rw-r--r-- | lib/libthr/thread/thr_create.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libthr/thread/thr_create.c b/lib/libthr/thread/thr_create.c index 539a7c5..3ad7dc0 100644 --- a/lib/libthr/thread/thr_create.c +++ b/lib/libthr/thread/thr_create.c @@ -116,7 +116,8 @@ _pthread_create(pthread_t * thread, const pthread_attr_t * attr, getcontext(&new_thread->ctx); new_thread->ctx.uc_stack.ss_sp = new_thread->stack; new_thread->ctx.uc_stack.ss_size = pattr->stacksize_attr; - makecontext(&new_thread->ctx, _thread_start, 1, new_thread); + makecontext(&new_thread->ctx, _thread_start, 0); + new_thread->arch_id = _set_curthread(&new_thread->ctx, new_thread); /* Copy the thread attributes: */ memcpy(&new_thread->attr, pattr, sizeof(struct pthread_attr)); @@ -208,12 +209,11 @@ _pthread_create(pthread_t * thread, const pthread_attr_t * attr, } void -_thread_start(pthread_t thread) +_thread_start(void) { - thread->arch_id = _set_curthread(thread); /* Run the current thread's start routine with argument: */ - pthread_exit(thread->start_routine(thread->arg)); + pthread_exit(curthread->start_routine(curthread->arg)); /* This point should never be reached. */ PANIC("Thread has resumed after exit"); |