* serial.c (deprecated_serial_fd): Remove.
authorTom Tromey <tromey@redhat.com>
Thu, 20 Dec 2012 15:30:25 +0000 (15:30 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 20 Dec 2012 15:30:25 +0000 (15:30 +0000)
* serial.h (deprecated_serial_fd): Remove.

gdb/ChangeLog
gdb/serial.c
gdb/serial.h

index 103778ff6c0cda6d19caa26f8efcccbb0793c611..74863714740928094e4ac08629745bba61acd56b 100644 (file)
@@ -1,3 +1,8 @@
+2012-12-20  Tom Tromey  <tromey@redhat.com>
+
+       * serial.c (deprecated_serial_fd): Remove.
+       * serial.h (deprecated_serial_fd): Remove.
+
 2012-12-20  Yao Qi  <yao@codesourcery.com>
 
        * maint.c (_initialize_maint_cmds): Move code ...
index 62d7fa97a5d505750b03cdc6d947ab28733de0f9..5bd221a8113fc012f8b361c88a20f37952695569 100644 (file)
@@ -546,19 +546,6 @@ serial_async (struct serial *scb,
     scb->ops->async (scb, handler != NULL);
 }
 
-int
-deprecated_serial_fd (struct serial *scb)
-{
-  /* FIXME: should this output a warning that deprecated code is being
-     called?  */
-  if (scb->fd < 0)
-    {
-      internal_error (__FILE__, __LINE__,
-                     _("serial: FD not valid"));
-    }
-  return scb->fd; /* sigh */
-}
-
 void
 serial_debug (struct serial *scb, int debug_p)
 {
index b16406222957bcfc4ced7707e032e9e8011c74cd..84eaa5b13bef71022fc2f0ba288a9d13fde076f2 100644 (file)
@@ -205,13 +205,6 @@ typedef void (serial_event_ftype) (struct serial *scb, void *context);
 extern void serial_async (struct serial *scb,
                          serial_event_ftype *handler, void *context);
 
-/* Provide direct access to the underlying FD (if any) used to
-   implement the serial device.  This interface is clearly
-   deprecated.  Will call internal_error() if the operation isn't
-   applicable to the current serial device.  */
-
-extern int deprecated_serial_fd (struct serial *scb);
-
 /* Trace/debug mechanism.
 
    serial_debug() enables/disables internal debugging.