emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/process.c


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/src/process.c
Date: Fri, 21 Feb 2003 03:05:56 -0500

Index: emacs/src/process.c
diff -c emacs/src/process.c:1.400 emacs/src/process.c:1.401
*** emacs/src/process.c:1.400   Wed Feb 19 20:54:09 2003
--- emacs/src/process.c Fri Feb 21 03:05:55 2003
***************
*** 3793,3799 ****
        EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
        EMACS_ADD_TIME (end_time, end_time, timeout);
      }
! #ifdef POLLING_PROBLEM_IN_SELECT
    /* AlainF 5-Jul-1996
       HP-UX 10.10 seem to have problems with signals coming in
       Causes "poll: interrupted system call" messages when Emacs is run
--- 3793,3799 ----
        EMACS_SET_SECS_USECS (timeout, time_limit, microsecs);
        EMACS_ADD_TIME (end_time, end_time, timeout);
      }
! #ifdef POLL_INTERRUPTED_SYS_CALL
    /* AlainF 5-Jul-1996
       HP-UX 10.10 seem to have problems with signals coming in
       Causes "poll: interrupted system call" messages when Emacs is run
***************
*** 3802,3808 ****
       and then turn off any other atimers.  */
    stop_polling ();
    turn_on_atimers (0);
! #endif
  
    while (1)
      {
--- 3802,3808 ----
       and then turn off any other atimers.  */
    stop_polling ();
    turn_on_atimers (0);
! #endif /* POLL_INTERRUPTED_SYS_CALL */
  
    while (1)
      {
***************
*** 4354,4367 ****
        clear_input_pending ();
        QUIT;
      }
! #ifdef hpux
    /* AlainF 5-Jul-1996
       HP-UX 10.10 seems to have problems with signals coming in
       Causes "poll: interrupted system call" messages when Emacs is run
       in an X window
       Turn periodic alarms back on */
    start_polling ();
! #endif
  
    return got_some_input;
  }
--- 4354,4367 ----
        clear_input_pending ();
        QUIT;
      }
! #ifdef POLL_INTERRUPTED_SYS_CALL
    /* AlainF 5-Jul-1996
       HP-UX 10.10 seems to have problems with signals coming in
       Causes "poll: interrupted system call" messages when Emacs is run
       in an X window
       Turn periodic alarms back on */
    start_polling ();
! #endif /* POLL_INTERRUPTED_SYS_CALL */
  
    return got_some_input;
  }




reply via email to

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