From: Nick Clifton Date: Mon, 10 Jan 2000 18:52:23 +0000 (+0000) Subject: Add NT_WIN32PSTATUS to list of recognised core notes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7bea2f730c47a5b0bf69bd60b88dcffc9d442d6a;p=binutils-gdb.git Add NT_WIN32PSTATUS to list of recognised core notes --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index b20df8f3bea..4604630fea8 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-01-10 Nick Clifton + + * readelf.c (get_note_type): Display NT_WIN32PSTATUS notes. + 2000-01-07 Mumit Khan * windres.c (long_options): Add --use-temp-file and diff --git a/binutils/readelf.c b/binutils/readelf.c index b1b7f3ec097..0c8feb537a1 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -6940,6 +6940,7 @@ get_note_type (e_type) case NT_PSINFO: return _("NT_PSINFO (psinfo structure)"); case NT_LWPSTATUS: return _("NT_LWPSTATUS (lwpstatus_t structure)"); case NT_LWPSINFO: return _("NT_LWPSINFO (lwpsinfo_t structure)"); + case NT_WIN32PSTATUS: return _("NT_WIN32PSTATUS (win32_pstatus strcuture)"); default: sprintf (buff, _("Unknown note type: (0x%08x)"), e_type); return buff;