diff options
| author | David Xu <davidxu@FreeBSD.org> | 2003-09-15 00:06:46 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2003-09-15 00:06:46 +0000 |
| commit | b9fe6075a0f463c022013c9719dedce94b9463fe (patch) | |
| tree | 52bfbfe9c78539eb21ab94e3efde870ab37d48c7 /lib/libpthread/thread/thr_sigmask.c | |
| parent | 6acbe3f2fa7eea82d037f68b69c829d21aa9635f (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_sigmask.c')
| -rw-r--r-- | lib/libpthread/thread/thr_sigmask.c | 2 |
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); } |
