From: Pedro Alves Date: Fri, 15 May 2015 15:00:40 +0000 (+0100) Subject: Include header for enum target_stop_reason X-Git-Tag: users/hjl/linux/release/2.25.51.0.2~1^2~2^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2465e12e99c4ffd3e56e4725729cd3016d4e2c3d;p=thirdparty%2Fbinutils-gdb.git Include header for enum target_stop_reason Building in C++ mode errors with: ~~~ g++ -fpermissive (...) /home/pedro/gdb/mygit/src/gdb/gdbserver/../nat/x86-linux.c In file included from /home/pedro/gdb/mygit/src/gdb/gdbserver/../nat/x86-linux.h:23:0, from /home/pedro/gdb/mygit/src/gdb/gdbserver/../nat/x86-linux.c:21: /home/pedro/gdb/mygit/src/gdb/gdbserver/../nat/linux-nat.h:74:13: error: use of enum ‘target_stop_reason’ without previous declaration extern enum target_stop_reason lwp_stop_reason (struct lwp_info *lwp); ^ /home/pedro/gdb/mygit/src/gdb/gdbserver/../nat/linux-nat.h:74:70: error: invalid type in declaration before ‘;’ token extern enum target_stop_reason lwp_stop_reason (struct lwp_info *lwp); ^ ~~~ gdb/ChangeLog: 2015-05-15 Pedro Alves * nat/linux-nat.h: Include "target/waitstatus.h". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1fdc4f47713..63c015f6365 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2015-05-15 Pedro Alves + + * nat/linux-nat.h: Include "target/waitstatus.h". + 2015-05-15 Yuanhui Zhang * python/py-unwind.c (struct reg_info): Move out of ... diff --git a/gdb/nat/linux-nat.h b/gdb/nat/linux-nat.h index 7cdaf4075cc..0633fa93f98 100644 --- a/gdb/nat/linux-nat.h +++ b/gdb/nat/linux-nat.h @@ -20,6 +20,8 @@ #ifndef LINUX_NAT_H #define LINUX_NAT_H +#include "target/waitstatus.h" + struct lwp_info; struct arch_lwp_info;