forked from Imagelibrary/binutils-gdb
2011-01-11 Michael Snyder <msnyder@vmware.com>
* s390-tdep.c: Comment cleanup, mostly periods and spaces. * score-tdep.c: Ditto. * score-tdep.h: Ditto. * ser-base.c: Ditto. * ser-go32.c: Ditto. * serial.c: Ditto. * serial.h: Ditto. * ser-mingw.c: Ditto. * ser-pipe.c: Ditto. * ser-tcp.c: Ditto. * ser-unix.c: Ditto. * sh64-tdep.c: Ditto. * shnbsd-nat.c: Ditto. * sh-tdep.c: Ditto. * sh-tdep.h: Ditto. * solib.c: Ditto. * solib-darwin.c: Ditto. * solib-frv.c: Ditto. * solib.h: Ditto. * solib-irix.c: Ditto. * solib-osf.c: Ditto. * solib-pa64.c: Ditto. * solib-som.c: Ditto. * solib-spu.c: Ditto. * solib-sunos.c: Ditto. * solib-svr4.c: Ditto. * solist.h: Ditto. * sol-thread.c: Ditto. * somread.c: Ditto. * source.c: Ditto. * source.h: Ditto. * sparc64-linux-tdep.c: Ditto. * sparc64-tdep.c: Ditto. * sparc-linux-nat.c: Ditto. * sparc-linux-tdep.c: Ditto. * sparc-sol2-nat.c: Ditto. * sparc-sol2-tdep.c: Ditto. * sparc-tdep.c: Ditto. * sparc-tdep.h: Ditto. * spu-tdep.c: Ditto. * stabsread.c: Ditto. * stabsread.h: Ditto. * stack.c: Ditto. * symfile.c: Ditto. * symfile.h: Ditto. * symmisc.c: Ditto. * symtab.c: Ditto. * symtab.h: Ditto. * target.c: Ditto. * target-descriptions.c: Ditto. * target-descriptions.h: Ditto. * target.h: Ditto. * target-memory.c: Ditto. * terminal.h: Ditto. * thread.c: Ditto. * top.c: Ditto. * tracepoint.c: Ditto. * tracepoint.h: Ditto. * trad-frame.h: Ditto. * typeprint.c: Ditto.
This commit is contained in:
22
gdb/serial.h
22
gdb/serial.h
@@ -37,9 +37,9 @@ typedef void *serial_ttystate;
|
||||
struct serial;
|
||||
|
||||
/* Try to open NAME. Returns a new `struct serial *' on success, NULL
|
||||
on failure. Note that some open calls can block and, if possible,
|
||||
on failure. Note that some open calls can block and, if possible,
|
||||
should be written to be non-blocking, with calls to ui_look_hook
|
||||
so they can be cancelled. An async interface for open could be
|
||||
so they can be cancelled. An async interface for open could be
|
||||
added to GDB if necessary. */
|
||||
|
||||
extern struct serial *serial_open (const char *name);
|
||||
@@ -75,7 +75,7 @@ extern void serial_un_fdopen (struct serial *scb);
|
||||
|
||||
/* Read one char from the serial device with TIMEOUT seconds to wait
|
||||
or -1 to wait forever. Use timeout of 0 to effect a poll.
|
||||
Infinite waits are not permitted. Returns unsigned char if ok, else
|
||||
Infinite waits are not permitted. Returns unsigned char if ok, else
|
||||
one of the following codes. Note that all error return-codes are
|
||||
guaranteed to be < 0. */
|
||||
|
||||
@@ -137,7 +137,7 @@ extern serial_ttystate serial_get_tty_state (struct serial *scb);
|
||||
extern int serial_set_tty_state (struct serial *scb, serial_ttystate ttystate);
|
||||
|
||||
/* printf_filtered a user-comprehensible description of ttystate on
|
||||
the specified STREAM. FIXME: At present this sends output to the
|
||||
the specified STREAM. FIXME: At present this sends output to the
|
||||
default stream - GDB_STDOUT. */
|
||||
|
||||
extern void serial_print_tty_state (struct serial *scb,
|
||||
@@ -170,11 +170,11 @@ extern int serial_setstopbits (struct serial *scb, int num);
|
||||
|
||||
/* Asynchronous serial interface: */
|
||||
|
||||
/* Can the serial device support asynchronous mode? */
|
||||
/* Can the serial device support asynchronous mode? */
|
||||
|
||||
extern int serial_can_async_p (struct serial *scb);
|
||||
|
||||
/* Has the serial device been put in asynchronous mode? */
|
||||
/* Has the serial device been put in asynchronous mode? */
|
||||
|
||||
extern int serial_is_async_p (struct serial *scb);
|
||||
|
||||
@@ -188,7 +188,7 @@ extern void serial_async (struct serial *scb,
|
||||
|
||||
/* 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
|
||||
deprecated. Will call internal_error() if the operation isn't
|
||||
applicable to the current serial device. */
|
||||
|
||||
extern int deprecated_serial_fd (struct serial *scb);
|
||||
@@ -203,7 +203,7 @@ extern void serial_debug (struct serial *scb, int debug_p);
|
||||
extern int serial_debug_p (struct serial *scb);
|
||||
|
||||
|
||||
/* Details of an instance of a serial object */
|
||||
/* Details of an instance of a serial object. */
|
||||
|
||||
struct serial
|
||||
{
|
||||
@@ -257,7 +257,7 @@ struct serial_ops
|
||||
serial_ttystate);
|
||||
int (*setbaudrate) (struct serial *, int rate);
|
||||
int (*setstopbits) (struct serial *, int num);
|
||||
/* Wait for output to drain */
|
||||
/* Wait for output to drain. */
|
||||
int (*drain_output) (struct serial *);
|
||||
/* Change the serial device into/out of asynchronous mode, call
|
||||
the specified function when ever there is something
|
||||
@@ -284,11 +284,11 @@ struct serial_ops
|
||||
#endif /* USE_WIN32API */
|
||||
};
|
||||
|
||||
/* Add a new serial interface to the interface list */
|
||||
/* Add a new serial interface to the interface list. */
|
||||
|
||||
extern void serial_add_interface (struct serial_ops * optable);
|
||||
|
||||
/* File in which to record the remote debugging session */
|
||||
/* File in which to record the remote debugging session. */
|
||||
|
||||
extern void serial_log_command (const char *);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user