diff options
author | Gary Benson <gbenson@redhat.com> | 2018-10-01 10:37:39 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2018-10-01 10:37:39 +0100 |
commit | 7c619dbdae11bead6f85863b7ce25f8b8610c59d (patch) | |
tree | 4eb914f12b0ac1de2c6537d79c505c436429a749 /gdb/Makefile.in | |
parent | 358ffcf28cf6e7c23311e91869ada4c480527d93 (diff) | |
download | gdb-7c619dbdae11bead6f85863b7ce25f8b8610c59d.zip gdb-7c619dbdae11bead6f85863b7ce25f8b8610c59d.tar.gz gdb-7c619dbdae11bead6f85863b7ce25f8b8610c59d.tar.bz2 |
Move duplicated code to common/gdb_proc_service.h
This commit moves now-identical code from gdb/gdb_proc_service.h
and gdb/gdbserver/gdb_proc_service.h into the new shared file
gdb/common/gdb_proc_service.h.
gdb/ChangeLog:
* common/gdb_proc_service.h: New file, factored out from...
* gdb_proc_service.h: Moved common code to the above file.
* Makefile.in (HFILES_NO_SRCDIR): Add the above new file.
gdb/gdbserver/ChangeLog:
* gdb_proc_service.h: Moved common code to
common/gdb_proc_service.h.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3b158fa..f856c32 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1433,6 +1433,7 @@ HFILES_NO_SRCDIR = \ common/gdb_assert.h \ common/gdb_tilde_expand.h \ common/gdb_locale.h \ + common/gdb_proc_service.h \ common/gdb_setjmp.h \ common/gdb_signals.h \ common/gdb_sys_time.h \ |