diff options
author | Pedro Alves <pedro@codesourcery.com> | 2009-10-11 22:50:07 +0000 |
---|---|---|
committer | Pedro Alves <pedro@codesourcery.com> | 2009-10-11 22:50:07 +0000 |
commit | fe30e64f19bfcab186896e772f0d7e8668e80340 (patch) | |
tree | 3a1e4b5ed35453c198f2aca585a96736b715774f /gdb | |
parent | 596ed462b9501d7dff8954411e95650f398e9556 (diff) | |
download | gdb-fe30e64f19bfcab186896e772f0d7e8668e80340.tar.gz |
* procfs.c (procfs_make_note_section): Go back to only outputing
an NT_PSTATUS note when UNIXWARE is defined.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/procfs.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5f16e96ad0d..7e3f17b81bf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-10-11 Pedro Alves <pedro@codesourcery.com> + + * procfs.c (procfs_make_note_section): Go back to only outputing + an NT_PSTATUS note when UNIXWARE is defined. + 2009-10-11 Daniel Jacobowitz <dan@codesourcery.com> * features/xinclude.dtd: Correct EMPTY typo. diff --git a/gdb/procfs.c b/gdb/procfs.c index b2868bcc341..d43031bed12 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -6153,7 +6153,7 @@ procfs_make_note_section (bfd *obfd, int *note_size) stop_signal = find_stop_signal (); -#ifdef NEW_PROC_API +#ifdef UNIXWARE fill_gregset (get_current_regcache (), &gregs, -1); note_data = elfcore_write_pstatus (obfd, note_data, note_size, PIDGET (inferior_ptid), |