diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-30 20:48:29 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-30 20:48:29 +0000 |
commit | 7bf6052470a623708421c0b48efabd8eae1e91dc (patch) | |
tree | dadbb945e63f0871379e6b36c6050e25f154942e /sys/netsmb | |
parent | 0f28e71fa52e856f676e2e19d41468c1aa6230b3 (diff) | |
download | FreeBSD-src-7bf6052470a623708421c0b48efabd8eae1e91dc.zip FreeBSD-src-7bf6052470a623708421c0b48efabd8eae1e91dc.tar.gz |
Convert use of p_siglist and old SIG*() macros to use <sys/ksiginfo.h>
prototyped functions to get a sigset_t, and further to check for any
queued signals, rather than an empty signal set, to go with the move
to signal queues rather than signal sets.
Diffstat (limited to 'sys/netsmb')
-rw-r--r-- | sys/netsmb/smb_subr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netsmb/smb_subr.c b/sys/netsmb/smb_subr.c index 4a37d6e..2b428a3 100644 --- a/sys/netsmb/smb_subr.c +++ b/sys/netsmb/smb_subr.c @@ -42,6 +42,7 @@ #include <sys/socket.h> #include <sys/signalvar.h> #include <sys/mbuf.h> +#include <sys/ksiginfo.h> #include <sys/iconv.h> @@ -75,10 +76,10 @@ smb_proc_intr(struct proc *p) if (p == NULL) return 0; - tmpset = p->p_siglist; + ksiginfo_to_sigset_t(p, &tmpset); SIGSETNAND(tmpset, p->p_sigmask); SIGSETNAND(tmpset, p->p_sigignore); - if (SIGNOTEMPTY(p->p_siglist) && SMB_SIGMASK(tmpset)) + if (signal_queued(p, 0) && SMB_SIGMASK(tmpset)) return EINTR; return 0; } |