summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_info.c
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2003-09-22 00:40:23 +0000
committerDavid Xu <davidxu@FreeBSD.org>2003-09-22 00:40:23 +0000
commit5dd6159cd46599e57525693833ae175f6a297c80 (patch)
tree84b347d8e3874d83f3203ec608db4e3792b589b6 /lib/libpthread/thread/thr_info.c
parent47b03ede0c13066304294ba688709d64bf43fa26 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_info.c')
-rw-r--r--lib/libpthread/thread/thr_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_info.c b/lib/libpthread/thread/thr_info.c
index 27ef3d1fbfa3..60813819c50c 100644
--- a/lib/libpthread/thread/thr_info.c
+++ b/lib/libpthread/thread/thr_info.c
@@ -185,7 +185,7 @@ dump_thread(int fd, pthread_t pthread, int long_version)
__sys_write(fd, s, strlen(s));
for (i = _SIG_WORDS - 1; i >= 0; i--) {
snprintf(s, sizeof(s), "%08x ",
- ~pthread->sigmask.__bits[i]);
+ pthread->data.sigwait->waitset->__bits[i]);
__sys_write(fd, s, strlen(s));
}
snprintf(s, sizeof(s), "(lo)\n");