public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [RFA] Remove cleanups from ser-mingw.c
@ 2018-06-14 21:21 Tom Tromey
  2018-06-18  3:16 ` Simon Marchi
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Tromey @ 2018-06-14 21:21 UTC (permalink / raw)
  To: gdb-patches; +Cc: Tom Tromey

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFA] Remove cleanups from ser-mingw.c
  2018-06-14 21:21 [RFA] Remove cleanups from ser-mingw.c Tom Tromey
@ 2018-06-18  3:16 ` Simon Marchi
  2018-06-18 14:17   ` Tom Tromey
  0 siblings, 1 reply; 3+ messages in thread
From: Simon Marchi @ 2018-06-18  3:16 UTC (permalink / raw)
  To: Tom Tromey, gdb-patches

Hi Tom,

LGTM, with some nits.

On 2018-06-14 05:20 PM, Tom Tromey wrote:
> @@ -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 ();

- I think we could remove the cast, unless you think it helps readability.
- I think we could remove the goto fail mechanism now.

>  
>    argv.release ();

Side note: doesn't this argv.release() look fishy to you?  Who ends up owning it?

Simon

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFA] Remove cleanups from ser-mingw.c
  2018-06-18  3:16 ` Simon Marchi
@ 2018-06-18 14:17   ` Tom Tromey
  0 siblings, 0 replies; 3+ messages in thread
From: Tom Tromey @ 2018-06-18 14:17 UTC (permalink / raw)
  To: Simon Marchi; +Cc: Tom Tromey, gdb-patches

>>>>> "Simon" == Simon Marchi <simark@simark.ca> writes:

>> -  scb->state = (void *) ps;
>> +  scb->state = (void *) ps.release ();

Simon> - I think we could remove the cast, unless you think it helps readability.
Simon> - I think we could remove the goto fail mechanism now.

Agreed on both counts, I made this change.

>> argv.release ();

Simon> Side note: doesn't this argv.release() look fishy to you?  Who ends up owning it?

It is fishy.  I looked at the history and it seems that when I added
gdb_argv here, I kept things working the same; I suppose without looking
too hard.  I looked and PEX does not seem to take ownership of the
arguments, so removing this line seems correct to me, and I've done that
in the version that I will check in.

Tom

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-06-18 14:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-14 21:21 [RFA] Remove cleanups from ser-mingw.c Tom Tromey
2018-06-18  3:16 ` Simon Marchi
2018-06-18 14:17   ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).