mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:38:13 +00:00
Kernel: Add the si_errno and si_band siginfo_t members
These 2 members are required by POSIX and are also used by some ports. Zero is a valid value for both of these, so no further work to support them is required.
This commit is contained in:
parent
f20e0036bd
commit
7a662c2638
1 changed files with 2 additions and 0 deletions
|
@ -26,10 +26,12 @@ union sigval {
|
|||
typedef struct siginfo {
|
||||
int si_signo;
|
||||
int si_code;
|
||||
int si_errno;
|
||||
pid_t si_pid;
|
||||
uid_t si_uid;
|
||||
void* si_addr;
|
||||
int si_status;
|
||||
int si_band;
|
||||
union sigval si_value;
|
||||
} siginfo_t;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue