diff options
author | Pedro Alves <palves@redhat.com> | 2012-05-24 16:39:15 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-05-24 16:39:15 +0000 |
commit | 2ea286498fd2ddceaf074bfbc9a2986777ea0396 (patch) | |
tree | 4360c24b1ef43fad4fa8143e65435c33f053617c /gdb/go32-nat.c | |
parent | b09846a918b74f0371149f730f8b391548b11a8d (diff) | |
download | gdb-2ea286498fd2ddceaf074bfbc9a2986777ea0396.zip gdb-2ea286498fd2ddceaf074bfbc9a2986777ea0396.tar.gz gdb-2ea286498fd2ddceaf074bfbc9a2986777ea0396.tar.bz2 |
gdb/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace target_signal with gdb_signal throughout.
gdb/gdbserver/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace target_signal with gdb_signal throughout.
include/gdb/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace target_signal with gdb_signal throughout.
sim/common/
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace target_signal with gdb_signal throughout.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index fe575d5..1602dad 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -238,7 +238,7 @@ static void go32_attach (struct target_ops *ops, char *args, int from_tty); static void go32_detach (struct target_ops *ops, char *args, int from_tty); static void go32_resume (struct target_ops *ops, ptid_t ptid, int step, - enum target_signal siggnal); + enum gdb_signal siggnal); static void go32_fetch_registers (struct target_ops *ops, struct regcache *, int regno); static void store_register (const struct regcache *, int regno); @@ -309,7 +309,7 @@ regno_mapping[] = static struct { int go32_sig; - enum target_signal gdb_sig; + enum gdb_signal gdb_sig; } sig_map[] = { @@ -343,7 +343,7 @@ sig_map[] = }; static struct { - enum target_signal gdb_sig; + enum gdb_signal gdb_sig; int djgpp_excepno; } excepn_map[] = { {TARGET_SIGNAL_0, -1}, @@ -391,7 +391,7 @@ static int resume_signal = -1; static void go32_resume (struct target_ops *ops, - ptid_t ptid, int step, enum target_signal siggnal) + ptid_t ptid, int step, enum gdb_signal siggnal) { int i; @@ -408,7 +408,7 @@ go32_resume (struct target_ops *ops, } if (resume_signal == -1) printf_unfiltered ("Cannot deliver signal %s on this platform.\n", - target_signal_to_name (siggnal)); + gdb_signal_to_name (siggnal)); } } |