* inftarg.c (child_thread_alive): New function to see if a
[deliverable/binutils-gdb.git] / gdb / serial.h
index 2dbb1aa883547add35d5ad662d0ba880adb7ab8a..8f4222f2ed8276fa2de8becf91569ddfefe03adb 100644 (file)
@@ -36,10 +36,15 @@ struct _serial_t
   /* ser-unix.c termio{,s} only, we still need to wait for this many more
      seconds.  */
   int timeout_remaining;
+  char *name;                  /* The name of the device or host */
+  struct _serial_t *next;      /* Pointer to the next serial_t */
+  int refcnt;                  /* Number of pointers to this block */
 };
 
 typedef struct _serial_t *serial_t;
 
+serial_t scb_base;             /* Pointer to list of scb's */
+
 struct serial_ops {
   char *name;
   struct serial_ops *next;
This page took 0.023373 seconds and 4 git commands to generate.