]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: remove file_handler typedef
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 24 Sep 2020 19:19:46 +0000 (15:19 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 24 Sep 2020 19:19:46 +0000 (15:19 -0400)
Remove the typedef (unneeded with C++).  Re-format the comments to
follow the more common style.

gdbsupport/ChangeLog:

* event-loop.c (struct file_handler): Remove typedef, re-format.

Change-Id: I3aea21fba1eb2584c507de3412da4e4c98283b2d

gdbsupport/ChangeLog
gdbsupport/event-loop.cc

index d46f8c77bb02a0eec10e91f932e090f0b47d035a..a2f563c81c0d1a21a9555b1805a5b05689987b30 100644 (file)
@@ -1,3 +1,7 @@
+2020-09-24  Simon Marchi  <simon.marchi@efficios.com>
+
+       * event-loop.c (struct file_handler): Remove typedef, re-format.
+
 2020-09-16  John Baldwin  <jhb@FreeBSD.org>
 
        * common.m4 (GDB_AC_COMMON): Refactor checks for kinfo_getfile().
index e959e1b91b8dd127df618d2573713c2cf6d8cc42..59436d467edea442f2e0b136072cb5e81189184f 100644 (file)
 /* Information about each file descriptor we register with the event
    loop.  */
 
-typedef struct file_handler
-  {
-    int fd;                    /* File descriptor.  */
-    int mask;                  /* Events we want to monitor: POLLIN, etc.  */
-    int ready_mask;            /* Events that have been seen since
-                                  the last time.  */
-    handler_func *proc;                /* Procedure to call when fd is ready.  */
-    gdb_client_data client_data;       /* Argument to pass to proc.  */
-    int error;                 /* Was an error detected on this fd?  */
-    struct file_handler *next_file;    /* Next registered file descriptor.  */
-  }
-file_handler;
+struct file_handler
+{
+  /* File descriptor.  */
+  int fd;
+
+  /* Events we want to monitor: POLLIN, etc.  */
+  int mask;
+
+  /* Events that have been seen since the last time.  */
+  int ready_mask;
+
+  /* Procedure to call when fd is ready.  */
+  handler_func *proc;
+
+  /* Argument to pass to proc.  */
+  gdb_client_data client_data;
+
+  /* Was an error detected on this fd?  */
+  int error;
+
+  /* Next registered file descriptor.  */
+  struct file_handler *next_file;
+};
 
 /* Do we use poll or select ? */
 #ifdef HAVE_POLL