diff options
| author | Jan Kratochvil <[email protected]> | 2012-10-10 22:27:58 +0200 |
|---|---|---|
| committer | Jan Kratochvil <[email protected]> | 2012-10-12 20:54:20 +0200 |
| commit | 4bdbb6716d99a82ded1c56a93165a095c9f96404 (patch) | |
| tree | 7852c06c733ba1d90ace86425b3deefd4acc5f1d /backends | |
| parent | 82ed98ac0e471c43d88e27e6b9c6e6f44e74d6cf (diff) | |
src/
2012-10-12 Jan Kratochvil <[email protected]>
* readelf.c (ITEM_WRAP_COLUMN, REGISTER_WRAP_COLUMN): Merge to ...
(WRAP_COLUMN): ... here.
(print_core_item): Remove parameter format_max. Update function
comment. Replace FORMAT_MAX by the real output width.
(handle_core_item): Remove the FORMAT_MAX values in TYPES, DO_TYPE,
calls of print_core_item, remove variable maxfmt, change
ITEM_WRAP_COLUMN to WRAP_COLUMN.
(handle_core_register): Remove the FORMAT_MAX values in TYPES, BITS,
calls of print_core_item, change REGISTER_WRAP_COLUMN to WRAP_COLUMN.
backends/
2012-10-12 Jan Kratochvil <[email protected]>
* linux-core-note.c (prstatus_items): Rename groups of sigpend and
sighold to signal2 and signal3.
Signed-off-by: Jan Kratochvil <[email protected]>
Diffstat (limited to 'backends')
| -rw-r--r-- | backends/ChangeLog | 5 | ||||
| -rw-r--r-- | backends/linux-core-note.c | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/backends/ChangeLog b/backends/ChangeLog index 1842daa6..cca71130 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,8 @@ +2012-10-12 Jan Kratochvil <[email protected]> + + * linux-core-note.c (prstatus_items): Rename groups of sigpend and + sighold to signal2 and signal3. + 2012-09-24 Petr Machata <[email protected]> * arm_corenote.c (vfp_items, vfp_regs): New const variables. diff --git a/backends/linux-core-note.c b/backends/linux-core-note.c index 15926941..b09154f2 100644 --- a/backends/linux-core-note.c +++ b/backends/linux-core-note.c @@ -123,8 +123,10 @@ static const Ebl_Core_Item prstatus_items[] = FIELD (signal, INT, info.si_code, 'd'), FIELD (signal, INT, info.si_errno, 'd'), FIELD (signal, SHORT, cursig, 'd'), - FIELD (signal, ULONG, sigpend, 'B'), - FIELD (signal, ULONG, sighold, 'B'), + + /* Use different group name for a newline delimiter. */ + FIELD (signal2, ULONG, sigpend, 'B'), + FIELD (signal3, ULONG, sighold, 'B'), FIELD (identity, PID_T, pid, 'd', .thread_identifier = true), FIELD (identity, PID_T, ppid, 'd'), FIELD (identity, PID_T, pgrp, 'd'), |
