1
Fork 0
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:
Idan Horowitz 2021-12-22 21:55:10 +02:00
parent f20e0036bd
commit 7a662c2638

View file

@ -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;