diff options
| author | Elliott Hughes <enh@google.com> | 2023-09-19 14:16:54 -0700 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2023-09-27 01:37:36 +0200 |
| commit | 7f87f250eca768547ae2419ee34c58cf4c2c0ff7 (patch) | |
| tree | da371c002d6fa07cbd147b2657bfaa842c80b1ac | |
| parent | 1f0f451c78fd3d949038ec696771374588546b99 (diff) | |
| download | man-pages-7f87f250eca768547ae2419ee34c58cf4c2c0ff7.tar.gz | |
system_data_types.7: Clarify si_addr field.
This patch reuses the clearer text from sigaction.2 instead.
I've also filed https://www.austingroupbugs.net/view.php?id=1775
to improve POSIX's wording here to not be SIGILL-specific.
Signed-off-by: Elliott Hughes <enh@google.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man7/system_data_types.7 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 index 6765ceb4db..b97e7b5a38 100644 --- a/man7/system_data_types.7 +++ b/man7/system_data_types.7 @@ -77,7 +77,7 @@ typedef struct { int si_code; /* Signal code */ pid_t si_pid; /* Sending process ID */ uid_t si_uid; /* Real user ID of sending process */ - void *si_addr; /* Address of faulting instruction */ + void *si_addr; /* Memory location which caused fault */ int si_status; /* Exit value or signal */ union sigval si_value; /* Signal value */ } siginfo_t; |
