summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2003-07-09 01:06:12 +0000
committerDavid Xu <davidxu@FreeBSD.org>2003-07-09 01:06:12 +0000
commit0527fc8806b03004630f6958e150198b479da389 (patch)
tree26c6de1f517e656066410bf1d0337da5c426d81a /lib/libpthread/thread
parentfb88a3e0f446398e1eacab74669be0a671994b21 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread')
-rw-r--r--lib/libpthread/thread/thr_kern.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_kern.c b/lib/libpthread/thread/thr_kern.c
index d2567b75e84c..717a766775c9 100644
--- a/lib/libpthread/thread/thr_kern.c
+++ b/lib/libpthread/thread/thr_kern.c
@@ -1036,7 +1036,7 @@ thr_resume_wrapper(int sig, siginfo_t *siginfo, ucontext_t *ucp)
{
struct pthread *curthread = _get_curthread();
struct kse *curkse;
- int ret;
+ int ret, err_save = curthread->error;
DBG_MSG(">>> sig wrapper\n");
if (curthread->lock_switch)
@@ -1045,6 +1045,7 @@ thr_resume_wrapper(int sig, siginfo_t *siginfo, ucontext_t *ucp)
_kse_critical_enter();
curkse = _get_curkse();
curthread->tmbx.tm_context = *ucp;
+ curthread->error = err_save;
ret = _thread_switch(&curthread->tmbx, &curkse->k_mbx.km_curthread);
if (ret != 0)
PANIC("thr_resume_wrapper: thread has returned "