git: d8d4ed26c92d - main - syscall.master: fix aio_suspend signature
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 19 Mar 2024 23:15:53 UTC
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/src/commit/?id=d8d4ed26c92de27cf883d05fddb97a0c23123215
commit d8d4ed26c92de27cf883d05fddb97a0c23123215
Author: Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2024-03-19 21:50:18 +0000
Commit: Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2024-03-19 23:13:26 +0000
syscall.master: fix aio_suspend signature
It takes a `const struct iovec *iovp`.
Reviewed by: kib
Differential Revision: https://reviews.freebsd.org/D44378
---
sys/kern/syscalls.master | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 5775e1573c75..3ce60f7d3820 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1645,7 +1645,7 @@
}
315 AUE_AIO_SUSPEND STD|CAPENABLED {
int aio_suspend(
- _Inout_updates_(nent) _Contains_long_ptr_ struct aiocb * const * aiocbp,
+ _Inout_updates_(nent) _Contains_long_ptr_ const struct aiocb * const * aiocbp,
int nent,
_In_opt_ _Contains_long_timet_ const struct timespec *timeout
);