summaryrefslogtreecommitdiff
path: root/src/syssignal.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-05-10 18:13:22 +0000
committerJim Blandy <jimb@redhat.com>1992-05-10 18:13:22 +0000
commit9c8d27372ede4d8763584d5c6b1645aef6f6c08f (patch)
tree25b4970920fda2e7f507c454546bbc3ff233fc4e /src/syssignal.h
parentba7ad1b13193f4d26f1703a0601cac6708bcc631 (diff)
downloademacs-9c8d27372ede4d8763584d5c6b1645aef6f6c08f.tar.gz
entered into RCS
Diffstat (limited to 'src/syssignal.h')
-rw-r--r--src/syssignal.h100
1 files changed, 47 insertions, 53 deletions
diff --git a/src/syssignal.h b/src/syssignal.h
index cf5914458f2..486f9efd623 100644
--- a/src/syssignal.h
+++ b/src/syssignal.h
@@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-
#ifdef POSIX_SIGNALS
#define SIGMASKTYPE sigset_t
@@ -25,22 +24,24 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define SIGFULLMASK (full_mask)
extern sigset_t empty_mask, full_mask, temp_mask;
-#define sigmask(SIG) \
-(sigemptyset (&temp_mask), sigaddset (&temp_mask, SIG), temp_mask)
-
-/* The below routines may need a local mask. There could be problems
- if code using any of the 3 macros below could be reentered due to a
- signal occurring. This can't happen in Emacs 18.57, so we don't
- worry. - DJB */
-
-#define EMACS_SIGPAUSE(sigset) \
- do { sigset_t _mask; sys_sigpause (sigset); } while (0)
-#define EMACS_SIGBLOCK(new_sig, old_sig) \
- do { sigset_t _mask; (old_sig) = sys_sigblock (new_sig); } while (0)
-#define EMACS_SIGUNBLOCK(new_sig, old_sig) \
- do { sigset_t _mask; (old_sig) = sys_sigunblock (new_sig); } while (0)
-#define EMACS_SIGSETMASK(new_sig, old_sig) \
- do { sigset_t _mask; (old_sig) = sys_sigsetmask (new_sig); } while (0)
+/* POSIX pretty much destroys any possibility of writing sigmask as a
+ macro in standard C. */
+#ifdef __GNUC__
+#define sigmask(SIG) \
+ ({ \
+ sigset_t _mask; \
+ sigemptyset (&_mask); \
+ sigaddset (&_mask, SIG); \
+ _mask; \
+ })
+#else
+#define sigmask(SIG) (sys_sigmask (SIG))
+#endif
+
+#define sigpause(SIG) sys_sigpause(SIG)
+#define sigblock(SIG) sys_sigblock(SIG)
+#define sigunblock(SIG) sys_sigunblock(SIG)
+#define sigsetmask(SIG) sys_sigsetmask(SIG)
#define sighold(SIG) ONLY_USED_IN_BSD_4_1
#define sigrelse(SIG) ONLY_USED_IN_BSD_4_1
@@ -52,57 +53,51 @@ sigset_t sys_sigsetmask (sigset_t new_mask);
#define sys_sigdel(MASK,SIG) sigdelset(&MASK,SIG)
-#else /* ! defined (POSIX_SIGNALS) */
+#else /* not POSIX_SIGNALS */
#define sigunblock(SIG) \
{ SIGMASKTYPE omask = sigblock (SIGEMPTYMASK); sigsetmask (omask & ~SIG); }
-#endif /* ! defined (POSIX_SIGNALS) */
+#endif /* not POSIX_SIGNALS */
#ifndef SIGMASKTYPE
#define SIGMASKTYPE int
#endif
#ifndef SIGEMPTYMASK
-#define SIGEMPTYMASK 0
+#define SIGEMPTYMASK (0)
+#endif
+
+#ifndef SIGFULLMASK
+#define SIGFULLMASK (0xffffffff)
#endif
#ifndef sigmask
#define sigmask(no) (1L << ((no) - 1))
#endif
+#ifndef sigunblock
+#define sigunblock(SIG) \
+{ SIGMASKTYPE omask = sigblock (SIGFULLMASK); sigsetmask (omask & ~SIG); }
+#endif
+
+/* It would be very nice if we could somehow clean up all this trash. */
+
+#ifndef BSD4_1
+#define sigfree() sigsetmask (SIGEMPTYMASK)
+#define sigholdx(sig) sigsetmask (sigmask (sig))
+#define sigblockx(sig) sigblock (sigmask (sig))
+#define sigunblockx(sig) sigblock (SIGEMPTYMASK)
+#define sigpausex(sig) sigpause (0)
+#endif /* not BSD4_1 */
+
#ifdef BSD4_1
#define SIGIO SIGTINT
/* sigfree and sigholdx are in sysdep.c */
-#define EMACS_SIGFREE () sigfree ()
-
-/* We define the following macros to expand into statements rather
- than expressions, because the POSIX macros above do the same, and
- we don't want people on BSD4_1 systems accidentally using the
- macros in a way that will break the other systems. */
-#define EMACS_SIGHOLDX(new_sig, old_sig) \
- do { (old_sig) = sigholdx (new_sig); } while (0)
-#define EMACS_SIGBLOCKX(new_sig, old_sig) \
- do { (old_sig) = sighold (new_sig); } while (0)
-#define EMACS_SIGUNBLOCKX(new_sig, old_sig) \
- do { (old_sig) = sigrelse (new_sig); } while (0)
-#define EMACS_SIGPAUSEX(sig) \
- EMACS_SIGPAUSE (new_sig);
-
-#else /* ! defined (BSD4_1) */
-
-#define EMACS_SIGFREE() \
- do { SIGMASKTYPE _dummy; EMACS_SIGSETMASK (SIGEMPTYMASK, _dummy); } while (0)
-#define EMACS_SIGHOLDX(new_sig, old_sig) \
- EMACS_SIGSETMASK (sigmask (new_sig), old_sig)
-#define EMACS_SIGBLOCKX(new_sig, old_sig) \
- EMACS_SIGBLOCK (sigmask (new_sig), old_sig)
-#define EMACS_SIGUNBLOCKX(new_sig, old_sig) \
- EMACS_SIGUNBLOCK (sigmask (new_sig), old_sig)
-#define EMACS_SIGPAUSEX(sig) \
- EMACS_SIGPAUSE (0)
-
-#endif /* ! defined (BSD4_1) */
+#define sigblockx(sig) sighold (sig)
+#define sigunblockx(sig) sigrelse (sig)
+#define sigpausex(sig) sigpause (sig)
+#endif /* BSD4_1 */
/* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
Must do that using the killpg call. */
@@ -114,11 +109,10 @@ sigset_t sys_sigsetmask (sigset_t new_mask);
/* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
testing SIGCHLD. */
-
#ifndef VMS
#ifdef SIGCLD
#ifndef SIGCHLD
#define SIGCHLD SIGCLD
-#endif /* SIGCHLD */
-#endif /* ! defined (SIGCLD) */
-#endif /* VMS */
+#endif /* not SIGCHLD */
+#endif /* SIGCLD */
+#endif /* not VMS */