This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix gdb.base/catch-fork-kill.c compilation


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6ccb54e2a82ca934f6d430b87ab015b7bfecc413

commit 6ccb54e2a82ca934f6d430b87ab015b7bfecc413
Author: Pedro Alves <palves@redhat.com>
Date:   Tue Mar 1 17:11:57 2016 +0000

    Fix gdb.base/catch-fork-kill.c compilation
    
    Fixes:
    
     Running .../src/gdb/testsuite/gdb.base/catch-fork-kill.exp ...
     gdb compile failed, .../src/gdb/testsuite/gdb.base/catch-fork-kill.c: In function 'main':
     .../src/gdb/testsuite/gdb.base/catch-fork-kill.c:81:4: warning: implicit declaration of function 'wait' [-Wimplicit-function-declaration]
         wait (NULL);
         ^
    
    gdb/testsuite/ChangeLog:
    2016-03-01  Pedro Alves  <palves@redhat.com>
    
    	* gdb.base/catch-fork-kill.c: Include <sys/wait.h>.

Diff:
---
 gdb/testsuite/ChangeLog                  | 4 ++++
 gdb/testsuite/gdb.base/catch-fork-kill.c | 1 +
 2 files changed, 5 insertions(+)

diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index d77645a..49e87bc 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2016-03-01  Pedro Alves  <palves@redhat.com>
+
+	* gdb.base/catch-fork-kill.c: Include <sys/wait.h>.
+
 2016-03-01  Yao Qi  <yao.qi@linaro.org>
 
 	* gdb.arch/arm-disp-step.exp: Use standard_testfile and
diff --git a/gdb/testsuite/gdb.base/catch-fork-kill.c b/gdb/testsuite/gdb.base/catch-fork-kill.c
index 607df2e..eb5a33b 100644
--- a/gdb/testsuite/gdb.base/catch-fork-kill.c
+++ b/gdb/testsuite/gdb.base/catch-fork-kill.c
@@ -19,6 +19,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <assert.h>
+#include <sys/wait.h>
 
 int fds[2] = { -1, -1 };


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]