bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#17339: [bug-gnu-emacs] emacs-24.3.90: big build report


From: Glenn Morris
Subject: bug#17339: [bug-gnu-emacs] emacs-24.3.90: big build report
Date: Tue, 29 Apr 2014 11:15:33 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

"Nelson H. F. Beebe" wrote:

>       process.c:6228:58: error: 'WCONTINUED' undeclared (first use in this 
> function)
>           && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))

I applied the following:

*** src/process.c       2014-04-16 13:27:28 +0000
--- src/process.c       2014-04-29 15:12:36 +0000
***************
*** 6225,6231 ****
        int status;
  
        if (p->alive
!         && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))
        {
          /* Change the status of the process that was found.  */
          p->tick = ++process_tick;
--- 6225,6235 ----
        int status;
  
        if (p->alive
! #ifndef WCONTINUED
!           && child_status_changed (p->pid, &status, WUNTRACED))
! #else
!           && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED))
! #endif
        {
          /* Change the status of the process that was found.  */
          p->tick = ++process_tick;






reply via email to

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