git: cab73e530564 - main - syscalls.master: struct siginfo -> struct __siginfo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 19 Mar 2024 23:15:56 UTC
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/src/commit/?id=cab73e530564b814a7f95945e42c05f1d2dcc1f4
commit cab73e530564b814a7f95945e42c05f1d2dcc1f4
Author: Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2024-03-18 21:40:07 +0000
Commit: Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2024-03-19 23:13:26 +0000
syscalls.master: struct siginfo -> struct __siginfo
struct siginfo doesn't exist, it's struct __siginfo (and siginfo_t).
Reviewed by: kib
Differential Revision: https://reviews.freebsd.org/D44380
---
sys/kern/syscalls.master | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 0d3cc796bdf4..874223f6f238 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1811,14 +1811,14 @@
345 AUE_SIGWAIT STD|CAPENABLED {
int sigtimedwait(
_In_ const sigset_t *set,
- _Out_opt_ _Contains_long_ptr_ struct siginfo *info,
+ _Out_opt_ _Contains_long_ptr_ struct __siginfo *info,
_In_opt_ _Contains_long_timet_ const struct timespec *timeout
);
}
346 AUE_NULL STD|CAPENABLED {
int sigwaitinfo(
_In_ const sigset_t *set,
- _Out_opt_ _Contains_long_ptr_ struct siginfo *info
+ _Out_opt_ _Contains_long_ptr_ struct __siginfo *info
);
}
347 AUE_ACL_GET_FILE STD {
@@ -2943,7 +2943,7 @@
_Out_opt_ int *status,
int options,
_Out_opt_ _Contains_long_ struct __wrusage *wrusage,
- _Out_opt_ _Contains_long_ptr_ struct siginfo *info
+ _Out_opt_ _Contains_long_ptr_ struct __siginfo *info
);
}
533 AUE_CAP_RIGHTS_LIMIT STD|CAPENABLED {