emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103760: Remove (RET)SIGTYPE; it is i


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103760: Remove (RET)SIGTYPE; it is identical to void on all supported systems.
Date: Sat, 26 Mar 2011 19:27:11 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103760
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2011-03-26 19:27:11 -0700
message:
  Remove (RET)SIGTYPE; it is identical to void on all supported systems.
  Ref: http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg01068.html
  
  * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
  (AH_BOTTOM): Do not define SIGTYPE.
  
  * lib-src/emacsclient.c: Replace SIGTYPE with void.
  
  * nt/config.nt: Remove RETSIGTYPE, SIGTYPE (identical to void).
  
  * src/syssignal.h: Replace RETSIGTYPE with void.
  
  * src/atimer.c, src/data.c, src/dispnew.c, src/emacs.c, src/floatfns.c:
  * src/keyboard.c, src/keyboard.h, src/lisp.h, src/process.c, src/sysdep.c:
  * src/xterm.c: Replace SIGTYPE with void everywhere.
  
  * src/s/template.h (SIGTYPE): Remove commented out definition.
  * src/s/usg5-4-common.h (SIGTYPE): Remove definition.
  
  * admin/CPP-DEFINES: Remove SIGTYPE.
modified:
  ChangeLog
  admin/CPP-DEFINES
  configure.in
  lib-src/ChangeLog
  lib-src/emacsclient.c
  nt/ChangeLog
  nt/config.nt
  src/ChangeLog
  src/atimer.c
  src/data.c
  src/dispnew.c
  src/emacs.c
  src/floatfns.c
  src/keyboard.c
  src/keyboard.h
  src/lisp.h
  src/process.c
  src/s/template.h
  src/s/usg5-4-common.h
  src/sysdep.c
  src/syssignal.h
  src/xterm.c
=== modified file 'ChangeLog'
--- a/ChangeLog 2011-03-26 19:29:10 +0000
+++ b/ChangeLog 2011-03-27 02:27:11 +0000
@@ -1,3 +1,8 @@
+2011-03-27  Glenn Morris  <address@hidden>
+
+       * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
+       (AH_BOTTOM): Do not define SIGTYPE.
+
 2011-03-26  Glenn Morris  <address@hidden>
 
        * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,

=== modified file 'admin/CPP-DEFINES'
--- a/admin/CPP-DEFINES 2011-02-16 01:35:20 +0000
+++ b/admin/CPP-DEFINES 2011-03-27 02:27:11 +0000
@@ -58,7 +58,6 @@
 INTERRUPT_INPUT
 NARROWPROTO
 SEPCHAR
-SIGTYPE
 SYSTEM_TYPE
 
 ** Machine specific macros, decribed in detail in src/m/template.h
@@ -238,7 +237,6 @@
 SIGPIPE
 SIGQUIT
 SIGTRAP
-SIGTYPE
 SOLARIS2
 STDC_HEADERS
 SYSTEM_PURESIZE_EXTRA

=== modified file 'configure.in'
--- a/configure.in      2011-03-26 19:29:10 +0000
+++ b/configure.in      2011-03-27 02:27:11 +0000
@@ -1227,9 +1227,6 @@
   AC_DEFINE(HAVE_STRUCT_UTIMBUF, 1, [Define to 1 if `struct utimbuf' is 
declared by <utime.h>.])
 fi
 
-dnl checks for typedefs
-AC_TYPE_SIGNAL
-
 dnl Check for speed_t typedef.
 AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t,
   [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <termios.h>]], [[speed_t x = 
1;]])],
@@ -3493,11 +3490,6 @@
 #  define SYSTEM_PURESIZE_EXTRA 30000
 #endif
 
-/* SIGTYPE is the macro we actually use.  */
-#ifndef SIGTYPE
-#define SIGTYPE RETSIGTYPE
-#endif
-
 #ifdef emacs /* Don't do this for lib-src.  */
 /* Tell regex.c to use a type compatible with Emacs.  */
 #define RE_TRANSLATE_TYPE Lisp_Object

=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2011-03-23 16:25:38 +0000
+++ b/lib-src/ChangeLog 2011-03-27 02:27:11 +0000
@@ -1,3 +1,7 @@
+2011-03-27  Glenn Morris  <address@hidden>
+
+       * emacsclient.c: Replace SIGTYPE with void.
+
 2011-03-23  Juanma Barranquero  <address@hidden>
 
        * ntlib.c: Include <ctype.h>.

=== modified file 'lib-src/emacsclient.c'
--- a/lib-src/emacsclient.c     2011-03-03 07:00:23 +0000
+++ b/lib-src/emacsclient.c     2011-03-27 02:27:11 +0000
@@ -1116,7 +1116,7 @@
 /* A signal handler that passes the signal to the Emacs process.
    Useful for SIGWINCH.  */
 
-static SIGTYPE
+static void
 pass_signal_to_emacs (int signalnum)
 {
   int old_errno = errno;
@@ -1131,7 +1131,7 @@
 /* Signal handler for SIGCONT; notify the Emacs process that it can
    now resume our tty frame.  */
 
-static SIGTYPE
+static void
 handle_sigcont (int signalnum)
 {
   int old_errno = errno;
@@ -1157,7 +1157,7 @@
    reality, we may get a SIGTSTP on C-z.  Handling this signal and
    notifying Emacs about it should get things under control again. */
 
-static SIGTYPE
+static void
 handle_sigtstp (int signalnum)
 {
   int old_errno = errno;

=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2011-03-25 15:39:59 +0000
+++ b/nt/ChangeLog      2011-03-27 02:27:11 +0000
@@ -1,3 +1,7 @@
+2011-03-27  Glenn Morris  <address@hidden>
+
+       * config.nt: Remove RETSIGTYPE, SIGTYPE (identical to void).
+
 2011-03-25  Juanma Barranquero  <address@hidden>
 
        * addpm.c (main): Remove unused variable `retval'.

=== modified file 'nt/config.nt'
--- a/nt/config.nt      2011-02-26 14:02:45 +0000
+++ b/nt/config.nt      2011-03-27 02:27:11 +0000
@@ -393,15 +393,6 @@
 #undef STACK_DIRECTION
 #endif
 
-/* Define the return type of signal handlers if the s-xxx file
-   did not already do so.  */
-#define RETSIGTYPE void
-
-/* SIGTYPE is the macro we actually use.  */
-#ifndef SIGTYPE
-#define SIGTYPE RETSIGTYPE
-#endif
-
 #ifdef emacs /* Don't do this for lib-src.  */
 /* Tell regex.c to use a type compatible with Emacs.  */
 #define RE_TRANSLATE_TYPE Lisp_Object

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-03-26 12:20:20 +0000
+++ b/src/ChangeLog     2011-03-27 02:27:11 +0000
@@ -1,3 +1,12 @@
+2011-03-27  Glenn Morris  <address@hidden>
+
+       * syssignal.h: Replace RETSIGTYPE with void.
+       * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
+       * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
+       Replace SIGTYPE with void everywhere.
+       * s/usg5-4-common.h (SIGTYPE): Remove definition.
+       * s/template.h (SIGTYPE): Remove commented out definition.
+
 2011-03-26  Eli Zaretskii  <address@hidden>
 
        * xdisp.c (redisplay_window): Don't check buffer's clip_changed

=== modified file 'src/atimer.c'
--- a/src/atimer.c      2011-03-18 06:48:05 +0000
+++ b/src/atimer.c      2011-03-27 02:27:11 +0000
@@ -64,7 +64,7 @@
 static void schedule_atimer (struct atimer *);
 static struct atimer *append_atimer_lists (struct atimer *,
                                            struct atimer *);
-SIGTYPE alarm_signal_handler (int signo);
+void alarm_signal_handler (int signo);
 
 
 /* Start a new atimer of type TYPE.  TIME specifies when the timer is
@@ -388,7 +388,7 @@
 /* Signal handler for SIGALRM.  SIGNO is the signal number, i.e.
    SIGALRM.  */
 
-SIGTYPE
+void
 alarm_signal_handler (int signo)
 {
 #ifndef SYNC_INPUT

=== modified file 'src/data.c'
--- a/src/data.c        2011-03-15 23:22:38 +0000
+++ b/src/data.c        2011-03-27 02:27:11 +0000
@@ -3300,7 +3300,7 @@
   XSYMBOL (intern_c_string ("most-negative-fixnum"))->constant = 1;
 }
 
-static SIGTYPE
+static void
 arith_error (int signo)
 {
   sigsetmask (SIGEMPTYMASK);

=== modified file 'src/dispnew.c'
--- a/src/dispnew.c     2011-03-25 18:06:33 +0000
+++ b/src/dispnew.c     2011-03-27 02:27:11 +0000
@@ -5566,7 +5566,7 @@
 
 #ifdef SIGWINCH
 
-static SIGTYPE
+static void
 window_change_signal (int signalnum) /* If we don't have an argument, */
                                /* some compilers complain in signal calls.  */
 {

=== modified file 'src/emacs.c'
--- a/src/emacs.c       2011-03-23 10:06:57 +0000
+++ b/src/emacs.c       2011-03-27 02:27:11 +0000
@@ -308,7 +308,7 @@
 
 
 /* Handle bus errors, invalid instruction, etc.  */
-SIGTYPE
+void
 fatal_error_signal (int sig)
 {
   SIGNAL_THREAD_CHECK (sig);
@@ -345,7 +345,7 @@
 #ifdef SIGDANGER
 
 /* Handler for SIGDANGER.  */
-SIGTYPE
+void
 memory_warning_signal (sig)
      int sig;
 {

=== modified file 'src/floatfns.c'
--- a/src/floatfns.c    2011-03-16 07:47:02 +0000
+++ b/src/floatfns.c    2011-03-27 02:27:11 +0000
@@ -103,7 +103,7 @@
 #endif
 
 #ifdef FLOAT_CATCH_SIGILL
-static SIGTYPE float_error ();
+static void float_error ();
 #endif
 
 /* Nonzero while executing in floating point.
@@ -126,7 +126,7 @@
    Handle errors which may result in signals or may set errno.
 
    Note that float_error may be declared to return void, so you can't
-   just cast the zero after the colon to (SIGTYPE) to make the types
+   just cast the zero after the colon to (void) to make the types
    check properly.  */
 
 #ifdef FLOAT_CHECK_ERRNO
@@ -960,7 +960,7 @@
 }
 
 #ifdef FLOAT_CATCH_SIGILL
-static SIGTYPE
+static void
 float_error (signo)
      int signo;
 {

=== modified file 'src/keyboard.c'
--- a/src/keyboard.c    2011-03-26 01:23:15 +0000
+++ b/src/keyboard.c    2011-03-27 02:27:11 +0000
@@ -434,15 +434,15 @@
 static Lisp_Object apply_modifiers (int, Lisp_Object);
 static void clear_event (struct input_event *);
 static Lisp_Object restore_kboard_configuration (Lisp_Object);
-static SIGTYPE interrupt_signal (int signalnum);
+static void interrupt_signal (int signalnum);
 #ifdef SIGIO
-static SIGTYPE input_available_signal (int signo);
+static void input_available_signal (int signo);
 #endif
 static void handle_interrupt (void);
 static void timer_start_idle (void);
 static void timer_stop_idle (void);
 static void timer_resume_idle (void);
-static SIGTYPE handle_user_signal (int);
+static void handle_user_signal (int);
 static char *find_user_signal_name (int);
 static int store_user_signal_events (void);
 
@@ -7082,7 +7082,7 @@
 #ifdef SIGIO   /* for entire page */
 /* Note SIGIO has been undef'd if FIONREAD is missing.  */
 
-static SIGTYPE
+static void
 input_available_signal (int signo)
 {
   /* Must preserve main program's value of errno.  */
@@ -7160,7 +7160,7 @@
   signal (sig, handle_user_signal);
 }
 
-static SIGTYPE
+static void
 handle_user_signal (int sig)
 {
   int old_errno = errno;
@@ -10712,7 +10712,7 @@
    SIGINT was generated by C-g, so we call handle_interrupt.
    Otherwise, the handler kills Emacs.  */
 
-static SIGTYPE
+static void
 interrupt_signal (int signalnum)       /* If we don't have an argument, some */
                                        /* compilers complain in signal calls. 
*/
 {

=== modified file 'src/keyboard.h'
--- a/src/keyboard.h    2011-03-26 01:23:15 +0000
+++ b/src/keyboard.h    2011-03-27 02:27:11 +0000
@@ -485,7 +485,7 @@
 extern void pop_kboard (void);
 extern void temporarily_switch_to_single_kboard (struct frame *);
 extern void record_asynch_buffer_change (void);
-extern SIGTYPE input_poll_signal (int);
+extern void input_poll_signal (int);
 extern void start_polling (void);
 extern void stop_polling (void);
 extern void set_poll_suppress_count (int);

=== modified file 'src/lisp.h'
--- a/src/lisp.h        2011-03-22 09:08:11 +0000
+++ b/src/lisp.h        2011-03-27 02:27:11 +0000
@@ -3181,7 +3181,7 @@
 extern Lisp_Object empty_unibyte_string, empty_multibyte_string;
 extern Lisp_Object Qfile_name_handler_alist;
 extern void (*fatal_error_signal_hook) (void);
-extern SIGTYPE fatal_error_signal (int);
+extern void fatal_error_signal (int);
 EXFUN (Fkill_emacs, 1) NO_RETURN;
 #if HAVE_SETLOCALE
 void fixup_locale (void);

=== modified file 'src/process.c'
--- a/src/process.c     2011-03-26 01:23:15 +0000
+++ b/src/process.c     2011-03-27 02:27:11 +0000
@@ -5470,7 +5470,7 @@
 jmp_buf send_process_frame;
 Lisp_Object process_sent_to;
 
-static SIGTYPE
+static void
 send_process_trap (int ignore)
 {
   SIGNAL_THREAD_CHECK (SIGPIPE);
@@ -5497,7 +5497,7 @@
   EMACS_INT rv;
   struct coding_system *coding;
   struct gcpro gcpro1;
-  SIGTYPE (*volatile old_sigpipe) (int);
+  void (*volatile old_sigpipe) (int);
 
   GCPRO1 (object);
 
@@ -5619,7 +5619,7 @@
          while (this > 0)
            {
              int outfd = p->outfd;
-             old_sigpipe = (SIGTYPE (*) (int)) signal (SIGPIPE, 
send_process_trap);
+             old_sigpipe = (void (*) (int)) signal (SIGPIPE, 
send_process_trap);
 #ifdef DATAGRAM_SOCKETS
              if (DATAGRAM_CHAN_P (outfd))
                {
@@ -6379,7 +6379,7 @@
    indirectly; if it does, that is a bug  */
 
 #ifdef SIGCHLD
-static SIGTYPE
+static void
 sigchld_handler (int signo)
 {
   int old_errno = errno;

=== modified file 'src/s/template.h'
--- a/src/s/template.h  2011-01-25 04:08:28 +0000
+++ b/src/s/template.h  2011-03-27 02:27:11 +0000
@@ -77,15 +77,6 @@
    a file that someone else has modified in his Emacs.  */
 #define CLASH_DETECTION
 
-/* Define this if your operating system declares signal handlers to
-   have a type other than the usual.  `The usual' is `void' for ANSI C
-   systems (i.e. when the __STDC__ macro is defined), and `int' for
-   pre-ANSI systems.  If you're using GCC on an older system, __STDC__
-   will be defined, but the system's include files will still say that
-   signal returns int or whatever; in situations like that, define
-   this to be what the system's include files want.  */
-/* #define SIGTYPE int */
-
 /* If the character used to separate elements of the executable path
    is not ':', #define this to be the appropriate character constant.  */
 /* #define SEPCHAR ':' */

=== modified file 'src/s/usg5-4-common.h'
--- a/src/s/usg5-4-common.h     2011-02-16 01:35:20 +0000
+++ b/src/s/usg5-4-common.h     2011-03-27 02:27:11 +0000
@@ -38,9 +38,6 @@
 /* The docs for system V/386 suggest v.3 has sigpause, so let's try it.  */
 #define HAVE_SYSV_SIGPAUSE
 
-/* On USG systems signal handlers return void.  */
-#define SIGTYPE void
-
 /* Get FIONREAD from <sys/filio.h>.  Get <sys/ttold.h> to get struct tchars.
    But get <termio.h> first to make sure ttold.h doesn't interfere.
    And don't try to use SIGIO yet.  */

=== modified file 'src/sysdep.c'
--- a/src/sysdep.c      2011-03-18 05:50:40 +0000
+++ b/src/sysdep.c      2011-03-27 02:27:11 +0000
@@ -449,7 +449,7 @@
 struct save_signal
 {
   int code;
-  SIGTYPE (*handler) (int);
+  void (*handler) (int);
 };
 
 static void save_signal_handlers (struct save_signal *);
@@ -608,7 +608,7 @@
   while (saved_handlers->code)
     {
       saved_handlers->handler
-        = (SIGTYPE (*) (int)) signal (saved_handlers->code, SIG_IGN);
+        = (void (*) (int)) signal (saved_handlers->code, SIG_IGN);
       saved_handlers++;
     }
 }

=== modified file 'src/syssignal.h'
--- a/src/syssignal.h   2011-01-25 04:08:28 +0000
+++ b/src/syssignal.h   2011-03-27 02:27:11 +0000
@@ -69,7 +69,7 @@
 
 /* Whether this is what all systems want or not, this is what
    appears to be assumed in the source, for example data.c:arith_error.  */
-typedef RETSIGTYPE (*signal_handler_t) (int);
+typedef void (*signal_handler_t) (int);
 
 signal_handler_t sys_signal (int signal_number, signal_handler_t action);
 sigset_t sys_sigblock   (sigset_t new_mask);

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2011-03-22 18:15:52 +0000
+++ b/src/xterm.c       2011-03-27 02:27:11 +0000
@@ -349,7 +349,7 @@
                               int *, struct input_event *);
 /* Don't declare this NO_RETURN because we want no
    interference with debugging failing X calls.  */
-static SIGTYPE x_connection_closed (Display *, const char *);
+static void x_connection_closed (Display *, const char *);
 
 
 /* Flush display of frame F, or of all frames if F is null.  */
@@ -7650,7 +7650,7 @@
    SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
    which will do the appropriate cleanup for us.  */
 
-static SIGTYPE
+static void
 x_connection_signal (int signalnum)    /* If we don't have an argument, */
                                /* some compilers complain in signal calls.  */
 {
@@ -7673,7 +7673,7 @@
 /* Handle the loss of connection to display DPY.  ERROR_MESSAGE is
    the text of an error message that lead to the connection loss.  */
 
-static SIGTYPE
+static void
 x_connection_closed (Display *dpy, const char *error_message)
 {
   struct x_display_info *dpyinfo = x_display_info_for_display (dpy);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]