[RFA] Remove cleanups from ser-mingw.c
Tom Tromey
tom@tromey.com
Thu Jun 14 21:21:00 GMT 2018
This removes the only cleanup from ser-mingw.c, replacing it with a
specialization of std::unique_ptr.
Tested by the buildbot.
gdb/ChangeLog
2018-06-14 Tom Tromey <tom@tromey.com>
* ser-mingw.c (struct pipe_state_destroyer): New.
(pipe_state_up): New typedef.
(cleanup_pipe_state): Remove.
(pipe_windows_open): Use pipe_state_up.
---
gdb/ChangeLog | 7 +++++++
gdb/ser-mingw.c | 21 +++++++++------------
2 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8150685e5c..d045385d26 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2018-06-14 Tom Tromey <tom@tromey.com>
+
+ * ser-mingw.c (struct pipe_state_destroyer): New.
+ (pipe_state_up): New typedef.
+ (cleanup_pipe_state): Remove.
+ (pipe_windows_open): Use pipe_state_up.
+
2018-06-14 Tom de Vries <tdevries@suse.de>
PR cli/22573
diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c
index d5e5aabb18..c9c0fff2ef 100644
--- a/gdb/ser-mingw.c
+++ b/gdb/ser-mingw.c
@@ -848,20 +848,20 @@ free_pipe_state (struct pipe_state *ps)
errno = saved_errno;
}
-static void
-cleanup_pipe_state (void *untyped)
+struct pipe_state_destroyer
{
- struct pipe_state *ps = (struct pipe_state *) untyped;
+ void operator() (pipe_state *ps) const
+ {
+ free_pipe_state (ps);
+ }
+};
- free_pipe_state (ps);
-}
+typedef std::unique_ptr<pipe_state, pipe_state_destroyer> pipe_state_up;
static int
pipe_windows_open (struct serial *scb, const char *name)
{
- struct pipe_state *ps;
FILE *pex_stderr;
- struct cleanup *back_to;
if (name == NULL)
error_no_arg (_("child command"));
@@ -871,8 +871,7 @@ pipe_windows_open (struct serial *scb, const char *name)
if (! argv[0] || argv[0][0] == '\0')
error (_("missing child command"));
- ps = make_pipe_state ();
- back_to = make_cleanup (cleanup_pipe_state, ps);
+ pipe_state_up ps (make_pipe_state ());
ps->pex = pex_init (PEX_USE_PIPES, "target remote pipe", NULL);
if (! ps->pex)
@@ -914,14 +913,12 @@ pipe_windows_open (struct serial *scb, const char *name)
goto fail;
scb->error_fd = fileno (pex_stderr);
- scb->state = (void *) ps;
+ scb->state = (void *) ps.release ();
argv.release ();
- discard_cleanups (back_to);
return 0;
fail:
- do_cleanups (back_to);
return -1;
}
--
2.14.4
More information about the Gdb-patches
mailing list