diff options
author | Gary Benson <gbenson@redhat.com> | 2014-07-28 14:28:06 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2014-08-07 09:06:44 +0100 |
commit | 4cb9c816469ef3373d9cdde76e8ab5007cf3739e (patch) | |
tree | 706c63bc76a31a02de85f049cfe3e0ce32932d91 /gdb/gdbserver | |
parent | 3995eeeeacd9f6630d46e3d1be226365ef5a6652 (diff) | |
download | gdb-4cb9c816469ef3373d9cdde76e8ab5007cf3739e.zip gdb-4cb9c816469ef3373d9cdde76e8ab5007cf3739e.tar.gz gdb-4cb9c816469ef3373d9cdde76e8ab5007cf3739e.tar.bz2 |
Move ptid.h to common-defs.h
This commit moves the inclusion of ptid.h to common-defs.h and removes
all other inclusions.
gdb/
2014-08-07 Gary Benson <gbenson@redhat.com>
* common/common-defs.h: Include ptid.h.
* defs.h: Do not include ptid.h.
* inferior.h: Likewise.
* infrun.h: Likewise.
* nat/linux-btrace.h: Likewise.
* nat/linux-osdata.h: Likewise.
* target/waitstatus.h: Likewise.
gdb/gdbserver/
2014-08-07 Gary Benson <gbenson@redhat.com>
* server.h: Do not include ptid.h.
* notif.h: Likewise.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/notif.h | 1 | ||||
-rw-r--r-- | gdb/gdbserver/server.h | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 5ca4ffa..b51d870 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,10 @@ 2014-08-07 Gary Benson <gbenson@redhat.com> + * server.h: Do not include ptid.h. + * notif.h: Likewise. + +2014-08-07 Gary Benson <gbenson@redhat.com> + * server.h: Do not include gdb_locale.h. 2014-08-07 Gary Benson <gbenson@redhat.com> diff --git a/gdb/gdbserver/notif.h b/gdb/gdbserver/notif.h index c6a790d..dab687f 100644 --- a/gdb/gdbserver/notif.h +++ b/gdb/gdbserver/notif.h @@ -16,7 +16,6 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "ptid.h" #include "target.h" #include "queue.h" diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h index 7c0b80a..ca2729c 100644 --- a/gdb/gdbserver/server.h +++ b/gdb/gdbserver/server.h @@ -71,7 +71,6 @@ int vsnprintf(char *str, size_t size, const char *format, va_list ap); /* A type used for binary buffers. */ typedef unsigned char gdb_byte; -#include "ptid.h" #include "buffer.h" #include "xml-utils.h" |