diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-02-08 06:03:54 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-02-08 06:03:54 +0000 |
commit | 8e65ff28b0780a52bdbe067b6297a66f9ec4e16e (patch) | |
tree | 1cf3436ec5c6d3e4f4dedb4ee2ccfa2c107dc33b /gdb/serial.c | |
parent | 8ca8f343f993cbe9937ef15e8cbbee95613c2016 (diff) | |
download | ppe42-binutils-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.tar.gz ppe42-binutils-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.zip |
Add __FILE__ and __LINE__ parameter to internal_error() /
internal_verror().
Diffstat (limited to 'gdb/serial.c')
-rw-r--r-- | gdb/serial.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/serial.c b/gdb/serial.c index 0f48947440..62c5bf089c 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -349,7 +349,8 @@ serial_readchar (serial_t scb, int timeout) /* FIXME: cagney/1999-10-11: Don't enable this check until the ASYNC code is finished. */ if (0 && SERIAL_IS_ASYNC_P (scb) && timeout < 0) - internal_error ("serial_readchar: blocking read in async mode"); + internal_error (__FILE__, __LINE__, + "serial_readchar: blocking read in async mode"); ch = scb->ops->readchar (scb, timeout); if (serial_logfp != NULL) @@ -508,7 +509,8 @@ deprecated_serial_fd (serial_t scb) called? */ if (scb->fd < 0) { - internal_error ("serial: FD not valid"); + internal_error (__FILE__, __LINE__, + "serial: FD not valid"); } return scb->fd; /* sigh */ } |