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/remote-vx.c | |
parent | 8ca8f343f993cbe9937ef15e8cbbee95613c2016 (diff) | |
download | gdb-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.zip gdb-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.tar.gz gdb-8e65ff28b0780a52bdbe067b6297a66f9ec4e16e.tar.bz2 |
Add __FILE__ and __LINE__ parameter to internal_error() /
internal_verror().
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r-- | gdb/remote-vx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index 40b31a5..f49fa72 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -976,7 +976,8 @@ vx_wait (int pid_to_wait_for, struct target_waitstatus *status) sleep_ms (200); /* FIXME Don't kill the network too badly */ } else if (pid != inferior_pid) - internal_error ("Bad pid for debugged task: %s\n", + internal_error (__FILE__, __LINE__, + "Bad pid for debugged task: %s\n", local_hex_string ((unsigned long) pid)); } while (pid == 0); |