old-cross-binutils/gdb/ser-termios.c
Fred Fish e676a15f0b * Makefile.in (VERSION): Bump to 4.5.6.
* coffread.c (coff_end_symtab):  Cast 2nd arg of complain() to
	correct type.
	* defs.h (NORETURN):  Define away for Lucid compiler.
	* remote.c (remote_timer, remote_interrupt):  Signal handlers
	take one int arg.
	* ser-termios.c (serial_write, serial_close):  Return whatever
	value the write/close call returns, rather than falling off end.
	* inferior.h (PTRACE_ARG3_TYPE):  Third arg to ptrace is int on
	more systems than it is "char *".  Define PTRACE_ARG3_TYPE to
	default to int.
	* infptrace.c, hppabsd-xdep.c, hppahpux-xdep.c, i386-xdep.c,
	inferior.h (call_ptrace):  Use PTRACE_ARG3_TYPE to declare type
	of third arg.
	* a68v-xdep.c, arm-xdep.c, convex-xdep.c, hp300ux-xdep.c, infrun.c,
	m88k-xdep.c, mach386-xdep.c, mips-xdep.c, os68k-xdep.c, pyr-tdep.c,
	pyr-xdep.c, rs6000-xdep.c, sparc-xdep.c, sun3-xdep.c, sun386-xdep.c,
	symm-xdep.c, ultra3-xdep.c:  Use PTRACE_ARG3_TYPE to cast ptrace
	argument 3.
	* sparc-xdep.c, a68v-xdep.c (fetch_inferior_registers,
	store_inferior_registers): Supply missing fourth argument to
	ptrace().
1992-06-24 04:49:48 +00:00

208 lines
3.7 KiB
C

/* Remote serial interface for OS's with termios
Copyright 1992
Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "defs.h"
#include "serial.h"
#include <fcntl.h>
#include <termios.h>
#include <sys/time.h>
static int desc;
CONST char *
DEFUN_VOID(serial_default_name)
{
return "/dev/ttya";
}
void
DEFUN_VOID(serial_raw)
{
/* Now happens inside of serial_open */
}
static struct termios otermios;
static int oflags;
void
DEFUN_VOID(serial_normal)
{
fcntl(desc, oflags, 0);
if (tcsetattr(desc, TCSANOW, &otermios))
{
printf("tcgetattr failed: errno=%d\n", errno);
}
}
int
DEFUN(serial_open,(name),
CONST char *name)
{
struct termios termios;
desc = open (name, O_RDWR);
if (desc < 0)
perror("Open failed: ");
oflags = fcntl(desc, F_GETFL, 0);
fcntl(desc, F_SETFL, oflags|FNDELAY);
if (tcgetattr(desc, &termios)) {
printf("tcgetattr failed: errno=%d\n", errno);
}
otermios = termios;
termios.c_iflag = 0;
termios.c_oflag = 0;
termios.c_lflag = 0;
termios.c_cc[VMIN] = 0;
termios.c_cc[VTIME] = 0;
if (tcsetattr(desc, TCSANOW, &termios)) {
printf("tcgetattr failed: errno=%d\n", errno);
}
return 1;
}
int
DEFUN(serial_timedreadchar,(timeout, ok),
int timeout AND
int *ok)
{
unsigned char buf;
fd_set readfds;
int val;
struct timeval tv;
FD_ZERO(&readfds);
FD_SET(desc, &readfds);
tv.tv_sec = timeout;
tv.tv_usec = 0;
val = select(desc+1, &readfds, 0, 0, &tv);
if (val > 0 && FD_ISSET(desc, &readfds))
{
val = read (desc, &buf, 1);
if (val == 1)
{
*ok = 1;
return buf;
}
}
*ok = 0;
return 0;
}
/* Translate baud rates from integers to damn B_codes. Unix should
have outgrown this crap years ago, but even POSIX wouldn't buck it. */
#ifndef B19200
#define B19200 EXTA
#endif
#ifndef B38400
#define B38400 EXTB
#endif
static struct {int rate, damn_b;} baudtab[] = {
{9600, B9600},
{19200, B19200},
#if 0
{300, B300},
{1200, B1200},
{2400, B2400},
{4800, B4800},
#endif
{-1, -1},
};
static int
DEFUN(damn_b,(rate),
int rate)
{
int i;
for (i = 0; baudtab[i].rate != -1; i++)
{
if (rate == baudtab[i].rate)
{
return i;
}
}
return -1;
}
int
DEFUN(serial_setbaudrate,(rate),int rate)
{
struct termios termios;
if (tcgetattr(desc, &termios)) {
printf("tcgetattr failed: errno=%d\n", errno);
}
cfsetospeed(&termios, baudtab[damn_b(rate)].damn_b);
cfsetispeed(&termios, baudtab[damn_b(rate)].damn_b);
if (tcsetattr(desc, TCSANOW, &termios)) {
printf("tcgetattr failed: errno=%d\n", errno);
}
return 1;
}
int
DEFUN(serial_nextbaudrate,(rate),
int rate)
{
int lookup;
lookup = damn_b(rate);
if (lookup == -1)
return baudtab[0].rate;
lookup++;
if (baudtab[lookup].rate == -1)
return baudtab[0].rate;
return baudtab[lookup].rate;
}
int
DEFUN(serial_write,(str, len),
CONST char *str AND
int len)
{
return (write (desc, str, len));
}
int
DEFUN_VOID(serial_close)
{
return (close(desc));
}