diff options
| author | John Birrell <jb@FreeBSD.org> | 1998-04-17 09:39:37 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1998-04-17 09:39:37 +0000 |
| commit | af139b98d43794da3205d458f625e32d47d2695d (patch) | |
| tree | 18733cdaf42988e016808f4556b10f32183a8508 /lib/libpthread/thread/thr_info.c | |
| parent | 334fa8f215d7d7c06c9069b490128ada85d493e8 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_info.c')
| -rw-r--r-- | lib/libpthread/thread/thr_info.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libpthread/thread/thr_info.c b/lib/libpthread/thread/thr_info.c index fe6565beb5e6..2909989beeaf 100644 --- a/lib/libpthread/thread/thr_info.c +++ b/lib/libpthread/thread/thr_info.c @@ -117,6 +117,10 @@ _thread_dump_info(void) sprintf(s, "owner %pr/%pw\n", _thread_fd_table[pthread->data.fd.fd]->r_owner, _thread_fd_table[pthread->data.fd.fd]->w_owner); _thread_sys_write(fd, s, strlen(s)); break; + case PS_SIGWAIT: + sprintf(s, "sigmask 0x%08lx\n", pthread->sigmask); + _thread_sys_write(fd, s, strlen(s)); + break; /* * Trap other states that are not explicitly |
