diff options
author | Jeff Roberson <jeff@FreeBSD.org> | 2003-03-31 22:49:17 +0000 |
---|---|---|
committer | Jeff Roberson <jeff@FreeBSD.org> | 2003-03-31 22:49:17 +0000 |
commit | 4093529dee0f4cb9b9e199e4221d9d95f0cd347a (patch) | |
tree | da7bdaf8a9eef1885d86203074ba0ad8ae222e7c /sys/compat/svr4/svr4_filio.c | |
parent | 0d49bb4b30e7ecf70acdbfc41bb709ca681ae4d2 (diff) |
- Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with
a follow on commit to kern_sig.c
- signotify() now operates on a thread since unmasked pending signals are
stored in the thread.
- PS_NEEDSIGCHK moves to TDF_NEEDSIGCHK.
Notes
Notes:
svn path=/head/; revision=112888
Diffstat (limited to 'sys/compat/svr4/svr4_filio.c')
-rw-r--r-- | sys/compat/svr4/svr4_filio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_filio.c b/sys/compat/svr4/svr4_filio.c index ca1b8db0aeaf..870da5d0427e 100644 --- a/sys/compat/svr4/svr4_filio.c +++ b/sys/compat/svr4/svr4_filio.c @@ -132,10 +132,10 @@ svr4_sys_read(td, uap) DPRINTF(("svr4_read(%d, 0x%0x, %d) = %d\n", uap->fd, uap->buf, uap->nbyte, rv)); if (rv == EAGAIN) { - DPRINTF(("sigmask = 0x%x\n", td->td_proc->p_sigmask)); + DPRINTF(("sigmask = 0x%x\n", td->td_sigmask)); DPRINTF(("sigignore = 0x%x\n", td->td_proc->p_sigignore)); DPRINTF(("sigcaught = 0x%x\n", td->td_proc->p_sigcatch)); - DPRINTF(("siglist = 0x%x\n", td->td_proc->p_siglist)); + DPRINTF(("siglist = 0x%x\n", td->td_siglist)); } #if defined(GROTTY_READ_HACK) |