Fix MinGW build with source-highlight
[deliverable/binutils-gdb.git] / gdb / remote-notif.h
index dafa177817d8255b220435a22305b97ae0550be0..87b52a18f9ec7fc6b98084d7ee2273563485f67e 100644 (file)
@@ -1,6 +1,6 @@
 /* Remote notification in GDB protocol
 
-   Copyright (C) 1988-2018 Free Software Foundation, Inc.
+   Copyright (C) 1988-2019 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
 #ifndef REMOTE_NOTIF_H
 #define REMOTE_NOTIF_H
 
-#include "queue.h"
+#include <memory>
+#include "common/queue.h"
 
 /* An event of a type of async remote notification.  */
 
 struct notif_event
 {
-  /* Destructor.  Release everything from SELF, but not SELF
-     itself.  */
-  void (*dtr) (struct notif_event *self);
+  virtual ~notif_event ()
+  {
+  }
 };
 
+/* A unique pointer holding a notif_event.  */
+
+typedef std::unique_ptr<notif_event> notif_event_up;
+
 /* ID of the notif_client.  */
 
 enum REMOTE_NOTIF_ID
@@ -55,13 +60,13 @@ typedef struct notif_client
      function may throw exception if contents in BUF is not the
      expected event.  */
   void (*parse) (remote_target *remote,
-                struct notif_client *self, char *buf,
+                struct notif_client *self, const char *buf,
                 struct notif_event *event);
 
   /* Send field <ack_command> to remote, and do some checking.  If
      something wrong, throw an exception.  */
   void (*ack) (remote_target *remote,
-              struct notif_client *self, char *buf,
+              struct notif_client *self, const char *buf,
               struct notif_event *event);
 
   /* Check this notification client can get pending events in
@@ -70,7 +75,7 @@ typedef struct notif_client
                                 struct notif_client *self);
 
   /* Allocate an event.  */
-  struct notif_event *(*alloc_event) (void);
+  notif_event_up (*alloc_event) ();
 
   /* Id of this notif_client.  */
   const enum REMOTE_NOTIF_ID id;
@@ -106,15 +111,14 @@ struct remote_notif_state
   struct notif_event *pending_event[REMOTE_NOTIF_LAST];
 };
 
-void remote_notif_ack (remote_target *remote, notif_client *nc, char *buf);
+void remote_notif_ack (remote_target *remote, notif_client *nc,
+                      const char *buf);
 struct notif_event *remote_notif_parse (remote_target *remote,
                                        notif_client *nc,
-                                       char *buf);
-
-void notif_event_xfree (struct notif_event *event);
+                                       const char *buf);
 
 void handle_notification (struct remote_notif_state *notif_state,
-                         char *buf);
+                         const char *buf);
 
 void remote_notif_process (struct remote_notif_state *state,
                           struct notif_client *except);
This page took 0.025459 seconds and 4 git commands to generate.