summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_sigmask.c
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2003-09-15 00:06:46 +0000
committerDavid Xu <davidxu@FreeBSD.org>2003-09-15 00:06:46 +0000
commitb9fe6075a0f463c022013c9719dedce94b9463fe (patch)
tree52bfbfe9c78539eb21ab94e3efde870ab37d48c7 /lib/libpthread/thread/thr_sigmask.c
parent6acbe3f2fa7eea82d037f68b69c829d21aa9635f (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_sigmask.c')
-rw-r--r--lib/libpthread/thread/thr_sigmask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_sigmask.c b/lib/libpthread/thread/thr_sigmask.c
index 15740f409b38..24a513433309 100644
--- a/lib/libpthread/thread/thr_sigmask.c
+++ b/lib/libpthread/thread/thr_sigmask.c
@@ -53,7 +53,7 @@ _pthread_sigmask(int how, const sigset_t *set, sigset_t *oset)
ret = __sys_sigprocmask(how, set, oset);
if (ret != 0)
ret = errno;
- /* Get a copy for thread dump */
+ /* Get a fresh copy */
__sys_sigprocmask(SIG_SETMASK, NULL, &curthread->sigmask);
return (ret);
}