The branch main has been updated by brooks:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=7936d4e4d082136b54994da0ac1246967a899f2a

commit 7936d4e4d082136b54994da0ac1246967a899f2a
Author:     Brooks Davis <[email protected]>
AuthorDate: 2024-03-19 21:51:40 +0000
Commit:     Brooks Davis <[email protected]>
CommitDate: 2024-03-19 23:13:26 +0000

    syscalls.master: align with sigfastblock declaration
    
    sigfastblock is declared to take a void * argument in the manpage in
    headers so declare it that way and use SAL annotations to say it
    interacts with a 32-bit word.
    
    Reviewed by:    kib
    Differential Revision:  https://reviews.freebsd.org/D44379
---
 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 3ce60f7d3820..0d3cc796bdf4 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -3231,7 +3231,7 @@
 573    AUE_NULL        STD|CAPENABLED {
                int sigfastblock(
                    int cmd,
-                   _Inout_opt_ uint32_t *ptr
+                   _Inout_updates_bytes_opt_(4) void *ptr
                );
        }
 574    AUE_REALPATHAT  STD {

Reply via email to