* ser-termios.c, ser-go32.c: Remove DEFUN crap, clean up.

* serial.h (EXFUN):  Remove all uses, convert to PARAMS.
* config/sun4os4.mh:  Include ser-termios.o.  FIXME, all .mh files
should include a ser-XXX.o module.

* dbxread.c (elfstab_build_psymtabs):  Remove DEFUN crap.
* defs.h, i960-pinsn.c, remote-hms.c:  Replace CONST with simple const.

* configure.in:  Map unrecognized sun 68k's, sun sparcs, into
known suns in configure.in, rather than mapping them to unique
config files that happen to duplicate other config files.
* config/sun3.{mh,mt}:  Remove (use identical sun3os4.*).
* config/sun4.{mh,mt}:  Remove (use identical sun4os4.*).
This commit is contained in:
John Gilmore
1992-09-02 08:51:17 +00:00
parent e1313d24bc
commit b52373a2b1
7 changed files with 121 additions and 98 deletions

View File

@@ -1,4 +1,4 @@
/* Remote Serial support interface definitions for GDB, the GNU Debugger.
/* Remote serial support interface definitions for GDB, the GNU Debugger.
Copyright 1992 Free Software Foundation, Inc.
This file is part of GDB.
@@ -18,45 +18,40 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Return a sensible default name for a serial device, something which
can be used as an argument to serial_open */
can be used as an argument to serial_open. */
CONST char *EXFUN(serial_default_name,(void));
const char *serial_default_name PARAMS ((void));
/* Try to open the serial device "name", return 1 if ok, 0 if not. */
/* Try to open the serial device "name", return 1 if ok, 0 if not. */
int EXFUN(serial_open,(CONST char *name));
int serial_open PARAMS ((const char *name));
/* Turn the port into raw mode */
/* Turn the port into raw mode. */
void EXFUN(serial_raw,(void));
void serial_raw PARAMS ((void));
/* Turn the port into normal mode. */
/* Turn the port into normal mode */
void serial_normal PARAMS ((void));
void EXFUN(serial_normal,(void));
/* Read one char from the serial device with <TO>-second timeout.
Return char, and set ok if ok. */
int serial_timedreadchar PARAMS ((int to, int *ok));
/* Read one char from the serial device with timeout, return char, and
set ok if ok */
/* Set the baudrate to the decimal value supplied, and return 1, or fail and
return 0. */
int EXFUN(serial_timedreadchar,(int to , int *ok));
int serial_setbaudrate PARAMS ((int to));
/* Return the next rate in the sequence, or return 0 for failure. */
/* Set the baudrate to the value supplied, and return 1, or fail and
return 0 */
int serial_nextbaudrate PARAMS ((int rate));
int EXFUN(serial_setbaudrate,(int to));
/* Write some chars to the device, return 1 if ok, 0 if not. */
/* Return the next rate in the sequence, or return 0 for a fail*/
int serial_write PARAMS ((const char *str, int len));
int EXFUN(serial_nextbaudrate,(int rate));
/* Close the serial port. */
/* Write some chars to the device, return 1 if ok, 0 if not */
int EXFUN(serial_write,( CONST char *str , int len));
/* Close the serial port */
int EXFUN(serial_close,(void));
int serial_close PARAMS ((void));