diff options
author | Gary Benson <gbenson@redhat.com> | 2014-08-06 14:43:17 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2014-08-28 15:06:48 +0100 |
commit | 14ce3192392edde90aa444c153eacede6c1ba5c5 (patch) | |
tree | e6e11741811cdb89a13a87f6c7281b81a18fdb8a /gdb/gdbserver/ChangeLog | |
parent | 50278d599da5f7536a1243a887c2a5fa12e099c1 (diff) | |
download | gdb-14ce3192392edde90aa444c153eacede6c1ba5c5.zip gdb-14ce3192392edde90aa444c153eacede6c1ba5c5.tar.gz gdb-14ce3192392edde90aa444c153eacede6c1ba5c5.tar.bz2 |
Convert fatal to perror_with_name in IPA code
This commit converts four calls to fatal into calls to
perror_with_name. perror_with_name calls error, which
in IPA terminates with exit (1) rather than longjmp, so
there is no functional change here.
gdb/gdbserver/ChangeLog:
* tracepoint.c (gdb_agent_init): Replace fatal with
perror_with_name.
(initialize_tracepoint): Likewise.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index dd89aab..9400b8a 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,11 @@ 2014-08-28 Gary Benson <gbenson@redhat.com> + * tracepoint.c (gdb_agent_init): Replace fatal with + perror_with_name. + (initialize_tracepoint): Likewise. + +2014-08-28 Gary Benson <gbenson@redhat.com> + * remote-utils.c (remote_prepare): Replace fatal with error. 2014-08-28 Gary Benson <gbenson@redhat.com> |