mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 06:20:30 +00:00
2012-06-13 Pedro Alves <palves@redhat.com>
Partial revert of previous change. * serial.c (scb_base): New global. (serial_for_fd): New. (serial_open, serial_fdopen_ops): Link new serial in open serials chain. (do_serial_close): Unlink serial from the open serials chain.
This commit is contained in:
parent
b0f0569128
commit
5eb3b0622d
@ -1,3 +1,13 @@
|
|||||||
|
2012-06-13 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
|
Partial revert of previous change.
|
||||||
|
|
||||||
|
* serial.c (scb_base): New global.
|
||||||
|
(serial_for_fd): New.
|
||||||
|
(serial_open, serial_fdopen_ops): Link new serial in open serials
|
||||||
|
chain.
|
||||||
|
(do_serial_close): Unlink serial from the open serials chain.
|
||||||
|
|
||||||
2012-06-12 Pedro Alves <palves@redhat.com>
|
2012-06-12 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
* infrun.c (infrun_thread_stop_requested_callback): Don't switch
|
* infrun.c (infrun_thread_stop_requested_callback): Don't switch
|
||||||
|
35
gdb/serial.c
35
gdb/serial.c
@ -33,6 +33,10 @@ static int global_serial_debug_p;
|
|||||||
|
|
||||||
static struct serial_ops *serial_ops_list = NULL;
|
static struct serial_ops *serial_ops_list = NULL;
|
||||||
|
|
||||||
|
/* Pointer to list of scb's. */
|
||||||
|
|
||||||
|
static struct serial *scb_base;
|
||||||
|
|
||||||
/* Non-NULL gives filename which contains a recording of the remote session,
|
/* Non-NULL gives filename which contains a recording of the remote session,
|
||||||
suitable for playback by gdbserver. */
|
suitable for playback by gdbserver. */
|
||||||
|
|
||||||
@ -157,6 +161,21 @@ serial_add_interface (struct serial_ops *optable)
|
|||||||
serial_ops_list = optable;
|
serial_ops_list = optable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Return the open serial device for FD, if found, or NULL if FD is
|
||||||
|
not already opened. */
|
||||||
|
|
||||||
|
struct serial *
|
||||||
|
serial_for_fd (int fd)
|
||||||
|
{
|
||||||
|
struct serial *scb;
|
||||||
|
|
||||||
|
for (scb = scb_base; scb; scb = scb->next)
|
||||||
|
if (scb->fd == fd)
|
||||||
|
return scb;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* Open up a device or a network socket, depending upon the syntax of NAME. */
|
/* Open up a device or a network socket, depending upon the syntax of NAME. */
|
||||||
|
|
||||||
struct serial *
|
struct serial *
|
||||||
@ -206,10 +225,12 @@ serial_open (const char *name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
scb->name = xstrdup (name);
|
scb->name = xstrdup (name);
|
||||||
|
scb->next = scb_base;
|
||||||
scb->debug_p = 0;
|
scb->debug_p = 0;
|
||||||
scb->async_state = 0;
|
scb->async_state = 0;
|
||||||
scb->async_handler = NULL;
|
scb->async_handler = NULL;
|
||||||
scb->async_context = NULL;
|
scb->async_context = NULL;
|
||||||
|
scb_base = scb;
|
||||||
|
|
||||||
if (serial_logfile != NULL)
|
if (serial_logfile != NULL)
|
||||||
{
|
{
|
||||||
@ -249,10 +270,12 @@ serial_fdopen_ops (const int fd, struct serial_ops *ops)
|
|||||||
scb->refcnt = 1;
|
scb->refcnt = 1;
|
||||||
|
|
||||||
scb->name = NULL;
|
scb->name = NULL;
|
||||||
|
scb->next = scb_base;
|
||||||
scb->debug_p = 0;
|
scb->debug_p = 0;
|
||||||
scb->async_state = 0;
|
scb->async_state = 0;
|
||||||
scb->async_handler = NULL;
|
scb->async_handler = NULL;
|
||||||
scb->async_context = NULL;
|
scb->async_context = NULL;
|
||||||
|
scb_base = scb;
|
||||||
|
|
||||||
if ((ops->fdopen) != NULL)
|
if ((ops->fdopen) != NULL)
|
||||||
(*ops->fdopen) (scb, fd);
|
(*ops->fdopen) (scb, fd);
|
||||||
@ -296,6 +319,18 @@ do_serial_close (struct serial *scb, int really_close)
|
|||||||
/* For serial_is_open. */
|
/* For serial_is_open. */
|
||||||
scb->bufp = NULL;
|
scb->bufp = NULL;
|
||||||
|
|
||||||
|
if (scb_base == scb)
|
||||||
|
scb_base = scb_base->next;
|
||||||
|
else
|
||||||
|
for (tmp_scb = scb_base; tmp_scb; tmp_scb = tmp_scb->next)
|
||||||
|
{
|
||||||
|
if (tmp_scb->next != scb)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
tmp_scb->next = tmp_scb->next->next;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
serial_unref (scb);
|
serial_unref (scb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -249,6 +249,7 @@ struct serial
|
|||||||
still need to wait for this many
|
still need to wait for this many
|
||||||
more seconds. */
|
more seconds. */
|
||||||
char *name; /* The name of the device or host */
|
char *name; /* The name of the device or host */
|
||||||
|
struct serial *next; /* Pointer to the next `struct serial *' */
|
||||||
int debug_p; /* Trace this serial devices operation. */
|
int debug_p; /* Trace this serial devices operation. */
|
||||||
int async_state; /* Async internal state. */
|
int async_state; /* Async internal state. */
|
||||||
void *async_context; /* Async event thread's context */
|
void *async_context; /* Async event thread's context */
|
||||||
|
Loading…
Reference in New Issue
Block a user