summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/thread/thr_resume_np.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>1997-02-05 23:26:09 +0000
committerjulian <julian@FreeBSD.org>1997-02-05 23:26:09 +0000
commitc2f7c3e4893b6b5c4494d549b3645e06664bc1b1 (patch)
treeb2e6d3017e236268263978b585f2150cd10b1689 /lib/libpthread/thread/thr_resume_np.c
parent321f03c8eddd8cf5aa81836ff1932a74156d30cb (diff)
downloadFreeBSD-src-c2f7c3e4893b6b5c4494d549b3645e06664bc1b1.zip
FreeBSD-src-c2f7c3e4893b6b5c4494d549b3645e06664bc1b1.tar.gz
Submitted by: John Birrell
uthreads update from the author.
Diffstat (limited to 'lib/libpthread/thread/thr_resume_np.c')
-rw-r--r--lib/libpthread/thread/thr_resume_np.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thr_resume_np.c b/lib/libpthread/thread/thr_resume_np.c
index a254814..934df58 100644
--- a/lib/libpthread/thread/thr_resume_np.c
+++ b/lib/libpthread/thread/thr_resume_np.c
@@ -49,21 +49,21 @@ pthread_resume_np(pthread_t thread)
/* Found the thread. Is it suspended? */
if (pthread->state == PS_SUSPENDED) {
/* Allow the thread to run. */
- pthread->state = PS_RUNNING;
+ PTHREAD_NEW_STATE(pthread,PS_RUNNING);
ret = 0;
} else if (pthread->state == PS_RUNNING) {
/* Thread is already running. */
ret = 0;
} else {
/* Thread is in some other state. */
- _thread_seterrno(_thread_run,EINVAL);
+ errno = EINVAL;
}
}
}
/* Check if thread was not found. */
if (ret == -1) {
/* No such thread */
- _thread_seterrno(_thread_run,ESRCH);
+ errno = ESRCH;
}
return(ret);
}
OpenPOWER on IntegriCloud