diff options
author | Nick Clifton <nickc@redhat.com> | 2013-03-08 17:13:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-03-08 17:13:31 +0000 |
commit | abb3f6cca7cd9d8ab574d252cab8e64928d7c40f (patch) | |
tree | 6b885f9bf0fa1f5ef7ac5d8fa4fdd04adb5ef36d /include | |
parent | 9b67fcec82bb8627fb39770365eb42ca98b397a1 (diff) | |
download | gdb-abb3f6cca7cd9d8ab574d252cab8e64928d7c40f.zip gdb-abb3f6cca7cd9d8ab574d252cab8e64928d7c40f.tar.gz gdb-abb3f6cca7cd9d8ab574d252cab8e64928d7c40f.tar.bz2 |
* elf-bfd.h (elfcore_write_s390_tdb): Add prototype.
* elf.c (elfcore_write_s390_tdb): New function.
(elfcore_write_register_note): Call it.
(elfcore_grok_s390_tdb): New function.
(elfcore_grok_note): Call it.
* readelf.c (get_note_type): Add NT_S390_TDB.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 7807767..f08ca6b 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2013-03-08 Andreas Arnez <arnez@linux.vnet.ibm.com> + + * common.h (NT_S390_TDB): Define. + 2013-02-06 Sandra Loosemore <sandra@codesourcery.com> Andrew Jenner <andrew@codesourcery.com> diff --git a/include/elf/common.h b/include/elf/common.h index 2bae603..8bdefa6 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -1,8 +1,5 @@ /* ELF support for BFD. - Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013 - Free Software Foundation, Inc. + Copyright 1991-2013 Free Software Foundation, Inc. Written by Fred Fish @ Cygnus Support, from information published in "UNIX System V Release 4, Programmers Guide: ANSI C and @@ -552,6 +549,8 @@ /* note name must be "LINUX". */ #define NT_S390_SYSTEM_CALL 0x307 /* S390 system call restart data */ /* note name must be "LINUX". */ +#define NT_S390_TDB 0x308 /* S390 transaction diagnostic block */ + /* note name must be "LINUX". */ #define NT_ARM_VFP 0x400 /* ARM VFP registers */ /* The following definitions should really use NT_AARCH_..., but defined this way for compatibility with Linux. */ |