summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1998-05-14 10:38:52 +0000
committerpeter <peter@FreeBSD.org>1998-05-14 10:38:52 +0000
commit3cca5ff2f6f80467258431c0b5d6ed6cb104c67b (patch)
tree4e53c16bd964ecac30c1bf73a06441263476aa3d
parentb964b328b659cc6f4e0e38cf7680556c10c828d5 (diff)
downloadFreeBSD-src-3cca5ff2f6f80467258431c0b5d6ed6cb104c67b.zip
FreeBSD-src-3cca5ff2f6f80467258431c0b5d6ed6cb104c67b.tar.gz
Commit an old change that has been sitting around for a long while.
signanosleep() did not deal with signal masks properly. This change was based on a discussion with bde some time ago (at least 6 months or more). signanosleep() should probably go away since it was never really used for more than a few weeks and doesn't appear in released code. It should probably be killed before somebody uses it and it becomes a gratuitous nonstandard feature.
-rw-r--r--sys/kern/kern_time.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/sys/kern/kern_time.c b/sys/kern/kern_time.c
index 00d65c8..b9b8a57 100644
--- a/sys/kern/kern_time.c
+++ b/sys/kern/kern_time.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kern_time.c 8.1 (Berkeley) 6/10/93
- * $Id: kern_time.c,v 1.51 1998/04/05 12:10:41 phk Exp $
+ * $Id: kern_time.c,v 1.52 1998/04/06 08:26:04 phk Exp $
*/
#include <sys/param.h>
@@ -287,11 +287,25 @@ signanosleep(p, uap)
if (error)
return (error);
- /* change mask for sleep */
+ /*
+ * Use the support for sigsuspend() to manage the masks. Arrange to
+ * have postsig() itself restore the mask after the signal has
+ * been delivered. This is because postsig() is called just prior
+ * to returning to usermode. If we had restore the masks early, the
+ * signal would be blocked by the time it should have been processed.
+ */
+ p->p_sigacts->ps_oldmask = p->p_sigmask;
+ p->p_sigacts->ps_flags |= SAS_OLDMASK;
p->p_sigmask = mask &~ sigcantmask;
error = nanosleep1(p, &rqt, &rmt);
+ if (error != EINTR) {
+ /* signal not queued, restore mask ourselves */
+ p->p_sigmask = p->p_sigacts->ps_oldmask;
+ p->p_sigacts->ps_flags &= ~SAS_OLDMASK;
+ }
+
if (error && SCARG(uap, rmtp)) {
error2 = copyout(&rmt, SCARG(uap, rmtp), sizeof(rmt));
if (error2) /* XXX shouldn't happen, did useracc() above */
OpenPOWER on IntegriCloud