diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-03-26 11:26:45 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-03-26 11:26:45 +0000 |
commit | 4d2779813faf9e0309a2eefe7a35e4b7d3489140 (patch) | |
tree | 2d5e4d50fb761d36797b6e0e6172a91f582496ba /gdb/ser-go32.c | |
parent | 2001-03-26 Andreas Jaeger <aj@suse.de> (diff) | |
download | binutils-gdb-4d2779813faf9e0309a2eefe7a35e4b7d3489140.tar.gz binutils-gdb-4d2779813faf9e0309a2eefe7a35e4b7d3489140.tar.bz2 binutils-gdb-4d2779813faf9e0309a2eefe7a35e4b7d3489140.zip |
* config/djgpp/djconfig.sh: Add copyright notice.
* ser-go32.c (rawclock): Remove prototype; include time.h instead.
(ISR, dos_hookirq, isr_t): Convert K&R definition to ANSI C.
(top level) <string.h>: Include gdb_string.h instead.
(dos_noop, dos_raw, dos_noflush_set_tty_state)
(dos_print_tty_state, dos_info): Remove ATTRIBUTE_UNUSED.
* go32-nat.c (go32_create_inferior): Move the declaration of
`environ' to here from the top level.
(top level) <_initialize_go32_nat>: Remove redundant prototype.
<gdb_string.h>: Include it instead of string.h.
(store_register): Call register_buffer instead of accessing
registers[] directly.
(redir_cmdline_delete, redir_cmdline_parse, redir_to_debugger)
(redir_to_debugger, redir_debug_init) [__DJGPP_MINOR__ < 3]: Put
the function names at the start of the line.
(go32_set_dr): Throw internal_error if the argument is not a valid
debug register number.
(go32_open, go32_close, go32_attach, go32_detach, go32_resume)
(go32_wait, go32_xfer_memory, go32_files_info)
(go32_terminal_info): Remove ATTRIBUTE_UNUSED.
Diffstat (limited to 'gdb/ser-go32.c')
-rw-r--r-- | gdb/ser-go32.c | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/gdb/ser-go32.c b/gdb/ser-go32.c index e3d3bf525ca..3d336f77c3b 100644 --- a/gdb/ser-go32.c +++ b/gdb/ser-go32.c @@ -1,12 +1,12 @@ /* Remote serial interface for local (hardwired) serial ports for GO32. - Copyright 1992, 1993, 2000 Free Software Foundation, Inc. + Copyright 1992, 1993, 2000, 2001 Free Software Foundation, Inc. Contributed by Nigel Stephens, Algorithmics Ltd. (nigel@algor.co.uk). - This version uses DPMI interrupts to handle buffered i/o + This version uses DPMI interrupts to handle buffered i/o without the separate "asynctsr" program. - This file is part of GDB. + 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 @@ -26,6 +26,7 @@ #include "defs.h" #include "gdbcmd.h" #include "serial.h" +#include "gdb_string.h" /* @@ -127,7 +128,7 @@ #define MSR_DDSR 0x02 #define MSR_DCTS 0x01 -#include <string.h> +#include <time.h> #include <dos.h> #include <go32.h> #include <dpmi.h> @@ -139,9 +140,6 @@ typedef unsigned long u_long; /* input buffer size */ #define CBSIZE 4096 -/* return raw 18Hz clock count */ -extern long rawclock (void); - #define RAWHZ 18 #ifdef DOS_STATS @@ -356,24 +354,23 @@ dos_comisr (int irq) } #define ISRNAME(x) dos_comisr##x -#define ISR(x) static void ISRNAME(x)() {dos_comisr(x);} +#define ISR(x) static void ISRNAME(x)(void) {dos_comisr(x);} ISR (0) ISR (1) ISR (2) ISR (3) ISR (4) ISR (5) ISR (6) ISR (7) - typedef void (*isr_t) (); +typedef void (*isr_t) (void); - static isr_t isrs[NINTR] = - { +static isr_t isrs[NINTR] = + { ISRNAME (0), ISRNAME (1), ISRNAME (2), ISRNAME (3), ISRNAME (4), ISRNAME (5), ISRNAME (6), ISRNAME (7) -}; + }; - static struct intrupt * - dos_hookirq (irq) - unsigned int irq; +static struct intrupt * +dos_hookirq (unsigned int irq) { struct intrupt *intr; unsigned int vec; @@ -412,7 +409,8 @@ ISR (4) ISR (5) ISR (6) ISR (7) intr->new_pmhandler.pm_offset = (u_long) isr; _go32_dpmi_allocate_iret_wrapper (&intr->new_pmhandler); - if (_go32_dpmi_set_protected_mode_interrupt_vector (vec, &intr->new_pmhandler)) + if (_go32_dpmi_set_protected_mode_interrupt_vector (vec, + &intr->new_pmhandler)) { return 0; } @@ -507,7 +505,8 @@ ok: outb (port, com_ier, 0); /* tentatively enable 16550 fifo, and see if it responds */ - outb (port, com_fifo, FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER); + outb (port, com_fifo, + FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER); sleep (1); port->fifo = ((inb (port, com_iir) & IIR_FIFO_MASK) == IIR_FIFO_MASK); @@ -601,13 +600,13 @@ dos_close (serial_t scb) static int -dos_noop (serial_t scb ATTRIBUTE_UNUSED) +dos_noop (serial_t scb) { return 0; } static void -dos_raw (serial_t scb ATTRIBUTE_UNUSED) +dos_raw (serial_t scb) { /* Always in raw mode */ } @@ -667,7 +666,7 @@ dos_set_tty_state (serial_t scb, serial_ttystate ttystate) static int dos_noflush_set_tty_state (serial_t scb, serial_ttystate new_ttystate, - serial_ttystate old_ttystate ATTRIBUTE_UNUSED) + serial_ttystate old_ttystate) { struct dos_ttystate *state; @@ -689,9 +688,8 @@ dos_flush_input (serial_t scb) } static void -dos_print_tty_state (serial_t scb ATTRIBUTE_UNUSED, - serial_ttystate ttystate ATTRIBUTE_UNUSED, - struct ui_file *stream ATTRIBUTE_UNUSED) +dos_print_tty_state (serial_t scb, serial_ttystate ttystate, + struct ui_file *stream) { /* Nothing to print */ return; @@ -705,7 +703,7 @@ dos_baudconv (int rate) if (rate <= 0) return -1; -#define divrnd(n, q) (((n) * 2 / (q) + 1) / 2) /* divide and round off */ +#define divrnd(n, q) (((n) * 2 / (q) + 1) / 2) /* divide and round off */ x = divrnd (COMTICK, rate); if (x <= 0) return -1; @@ -864,7 +862,7 @@ static struct serial_ops dos_ops = static void -dos_info (char *arg ATTRIBUTE_UNUSED, int from_tty ATTRIBUTE_UNUSED) +dos_info (char *arg, int from_tty) { struct dos_ttystate *port; #ifdef DOS_STATS |