From: Tom Tromey <tom@tromey.com>
To: gdb-patches@sourceware.org
Cc: Tom Tromey <tom@tromey.com>
Subject: [RFC 04/17] Move gdb_select.h to common/
Date: Sun, 24 Feb 2019 16:52:00 -0000 [thread overview]
Message-ID: <20190224165153.5062-5-tom@tromey.com> (raw)
In-Reply-To: <20190224165153.5062-1-tom@tromey.com>
This moves gdb_select.h to common/, so it can be used by other common
code.
gdb/ChangeLog
2019-02-24 Tom Tromey <tom@tromey.com>
* common/gdb_select.h: Move from...
* gdb_select.h: ... here.
* event-loop.c: Update include path.
* top.c: Update include path.
* ser-base.c: Update include path.
* ui-file.c: Update include path.
* ser-tcp.c: Update include path.
* guile/scm-ports.c: Update include path.
* posix-hdep.c: Update include path.
* ser-unix.c: Update include path.
* gdb_usleep.c: Update include path.
* mingw-hdep.c: Update include path.
* inflow.c: Update include path.
* event-top.c: Update include path.
---
gdb/ChangeLog | 17 +++++++++++++++++
gdb/{ => common}/gdb_select.h | 0
gdb/event-loop.c | 2 +-
gdb/event-top.c | 2 +-
gdb/gdb_usleep.c | 2 +-
gdb/guile/scm-ports.c | 2 +-
gdb/inflow.c | 2 +-
gdb/mingw-hdep.c | 2 +-
gdb/posix-hdep.c | 2 +-
gdb/ser-base.c | 2 +-
gdb/ser-tcp.c | 2 +-
gdb/ser-unix.c | 2 +-
gdb/top.c | 2 +-
gdb/ui-file.c | 2 +-
14 files changed, 29 insertions(+), 12 deletions(-)
rename gdb/{ => common}/gdb_select.h (100%)
diff --git a/gdb/gdb_select.h b/gdb/common/gdb_select.h
similarity index 100%
rename from gdb/gdb_select.h
rename to gdb/common/gdb_select.h
diff --git a/gdb/event-loop.c b/gdb/event-loop.c
index f41094e9add..41ac5802703 100644
--- a/gdb/event-loop.c
+++ b/gdb/event-loop.c
@@ -31,7 +31,7 @@
#include <sys/types.h>
#include "common/gdb_sys_time.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "top.h"
/* Tell create_file_handler what events we are interested in.
diff --git a/gdb/event-top.c b/gdb/event-top.c
index fb5d51c6e10..0cc144d397c 100644
--- a/gdb/event-top.c
+++ b/gdb/event-top.c
@@ -39,7 +39,7 @@
#include "maint.h"
#include "common/buffer.h"
#include "ser-event.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
/* readline include files. */
#include "readline/readline.h"
diff --git a/gdb/gdb_usleep.c b/gdb/gdb_usleep.c
index 25cc8e1b16c..0dcba0e6fad 100644
--- a/gdb/gdb_usleep.c
+++ b/gdb/gdb_usleep.c
@@ -17,7 +17,7 @@
#include "defs.h"
#include "gdb_usleep.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "common/gdb_sys_time.h"
int
diff --git a/gdb/guile/scm-ports.c b/gdb/guile/scm-ports.c
index 2950b1e39ec..62596966d40 100644
--- a/gdb/guile/scm-ports.c
+++ b/gdb/guile/scm-ports.c
@@ -22,7 +22,7 @@
conventions, et.al. */
#include "defs.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "top.h"
#include "target.h"
#include "guile-internal.h"
diff --git a/gdb/inflow.c b/gdb/inflow.c
index b71511308b3..8d8284fbea8 100644
--- a/gdb/inflow.c
+++ b/gdb/inflow.c
@@ -27,7 +27,7 @@
#include "observable.h"
#include <signal.h>
#include <fcntl.h>
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "inflow.h"
#include "gdbcmd.h"
diff --git a/gdb/mingw-hdep.c b/gdb/mingw-hdep.c
index 1a4b93bb8e8..2fa82d1d484 100644
--- a/gdb/mingw-hdep.c
+++ b/gdb/mingw-hdep.c
@@ -22,7 +22,7 @@
#include "serial.h"
#include "event-loop.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "readline/readline.h"
#include <windows.h>
diff --git a/gdb/posix-hdep.c b/gdb/posix-hdep.c
index 7911bc55055..97fd9b535a6 100644
--- a/gdb/posix-hdep.c
+++ b/gdb/posix-hdep.c
@@ -20,7 +20,7 @@
#include "defs.h"
#include "event-loop.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
/* Wrapper for select. Nothing special needed on POSIX platforms. */
diff --git a/gdb/ser-base.c b/gdb/ser-base.c
index 683d3f42528..6411ad7b2f7 100644
--- a/gdb/ser-base.c
+++ b/gdb/ser-base.c
@@ -22,7 +22,7 @@
#include "ser-base.h"
#include "event-loop.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "common/gdb_sys_time.h"
#ifdef USE_WIN32API
#include <winsock2.h>
diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c
index f484e59f196..7a459b38596 100644
--- a/gdb/ser-tcp.c
+++ b/gdb/ser-tcp.c
@@ -59,7 +59,7 @@
#endif
#include <signal.h>
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include <algorithm>
#ifndef HAVE_SOCKLEN_T
diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c
index 5a9965bf744..8f3579bd642 100644
--- a/gdb/ser-unix.c
+++ b/gdb/ser-unix.c
@@ -28,7 +28,7 @@
#include <sys/socket.h>
#include "common/gdb_sys_time.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "gdbcmd.h"
#include "common/filestuff.h"
#include <termios.h>
diff --git a/gdb/top.c b/gdb/top.c
index 22e6f7e29ab..91989609c07 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -51,7 +51,7 @@
#include "filenames.h"
#include "frame.h"
#include "common/buffer.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "common/scope-exit.h"
/* readline include files. */
diff --git a/gdb/ui-file.c b/gdb/ui-file.c
index 690fc62ed6d..6367c686504 100644
--- a/gdb/ui-file.c
+++ b/gdb/ui-file.c
@@ -22,7 +22,7 @@
#include "defs.h"
#include "ui-file.h"
#include "gdb_obstack.h"
-#include "gdb_select.h"
+#include "common/gdb_select.h"
#include "common/filestuff.h"
null_file null_stream;
--
2.17.2
next prev parent reply other threads:[~2019-02-24 16:52 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-24 16:51 [RFC 00/17] Merge event loop implementations Tom Tromey
2019-02-24 16:52 ` [RFC 14/17] Remove some dead code from event-loop.c Tom Tromey
2019-02-24 16:52 ` [RFC 17/17] Simplify gdbserver's serial event handling Tom Tromey
2019-09-26 17:36 ` Pedro Alves
2019-10-04 22:08 ` Tom Tromey
2019-02-24 16:52 ` [RFC 13/17] Switch gdbserver to common event loop Tom Tromey
2019-02-24 16:52 ` [RFC 10/17] Move event-loop.[ch] to common/ Tom Tromey
2019-09-26 14:06 ` Pedro Alves
2019-10-04 22:06 ` Tom Tromey
2019-02-24 16:52 ` [RFC 05/17] Remove gdb_usleep.c Tom Tromey
2019-09-26 14:02 ` Pedro Alves
2019-09-26 14:43 ` Tom Tromey
2019-02-24 16:52 ` Tom Tromey [this message]
2019-02-24 16:52 ` [RFC 06/17] Include <chrono> in event-loop.c Tom Tromey
2019-09-26 14:02 ` Pedro Alves
2019-02-24 16:52 ` [RFC 09/17] Introduce async-event.[ch] Tom Tromey
2019-09-26 14:06 ` Pedro Alves
2019-10-04 22:17 ` Tom Tromey
2019-02-24 16:52 ` [RFC 16/17] Remove gdb_fildes_t Tom Tromey
2019-02-24 16:52 ` [RFC 11/17] Implement event-loop glue for gdbserver Tom Tromey
2019-02-24 16:52 ` [RFC 12/17] Add the ability to stop the event loop Tom Tromey
2019-02-24 16:52 ` [RFC 01/17] Remove include from event-loop.c Tom Tromey
2019-02-24 16:52 ` [RFC 07/17] Use warning in event-loop Tom Tromey
2019-09-26 14:02 ` Pedro Alves
2019-02-24 16:52 ` [RFC 08/17] Introduce and use flush_streams Tom Tromey
2019-02-24 16:52 ` [RFC 02/17] Move gdb-specific code out of start_event_loop Tom Tromey
2019-09-26 14:02 ` Pedro Alves
2019-02-24 16:52 ` [RFC 15/17] Move gdb_notifier comment Tom Tromey
2019-09-26 14:06 ` Pedro Alves
2019-02-24 16:52 ` [RFC 03/17] Move event-loop configury to common.m4 Tom Tromey
2019-02-24 17:14 ` [RFC 00/17] Merge event loop implementations Eli Zaretskii
2019-02-24 17:26 ` Tom Tromey
2019-02-24 17:45 ` Eli Zaretskii
2019-02-25 19:57 ` Tom Tromey
2019-02-25 20:30 ` Eli Zaretskii
2019-02-25 20:55 ` Tom Tromey
2019-02-26 16:04 ` Eli Zaretskii
2019-02-26 16:23 ` Tom Tromey
2019-02-26 16:46 ` Eli Zaretskii
2019-09-26 17:47 ` Pedro Alves
2019-09-26 23:09 ` Tom Tromey
2019-09-27 13:53 ` Pedro Alves
2019-09-27 14:05 ` Pedro Alves
2019-09-27 14:21 ` Eli Zaretskii
2019-09-27 14:53 ` Pedro Alves
2019-09-27 15:32 ` Eli Zaretskii
2019-09-27 19:10 ` Tom Tromey
2020-02-14 2:22 ` Tom Tromey
2020-02-14 17:58 ` Pedro Alves
2020-02-14 18:36 ` Tom Tromey
2019-10-04 22:25 ` Tom Tromey
2020-02-14 18:20 ` Pedro Alves
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190224165153.5062-5-tom@tromey.com \
--to=tom@tromey.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox