mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Document the int -> size_t change to the m* syscalls
This commit is contained in:
parent
9154ee6aec
commit
39d11944d4
4 changed files with 4 additions and 4 deletions
|
|
@ -40,7 +40,7 @@
|
|||
.Sh SYNOPSIS
|
||||
.Fd #include <sys/types.h>
|
||||
.Fd #include <sys/mman.h>
|
||||
.Fn madvise "caddr_t addr" "int len" "int behav"
|
||||
.Fn madvise "caddr_t addr" "size_t len" "int behav"
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Fn madvise
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.Sh SYNOPSIS
|
||||
.Fd #include <sys/types.h>
|
||||
.Fd #include <sys/mman.h>
|
||||
.Fn mincore "caddr_t addr" "int len" "char *vec"
|
||||
.Fn mincore "caddr_t addr" "size_t len" "char *vec"
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Fn mincore
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.Sh SYNOPSIS
|
||||
.Fd #include <sys/types.h>
|
||||
.Fd #include <sys/mman.h>
|
||||
.Fn mprotect "caddr_t addr" "int len" "int prot"
|
||||
.Fn mprotect "caddr_t addr" "size_t len" "int prot"
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Fn mprotect
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.Sh SYNOPSIS
|
||||
.Fd #include <sys/types.h>
|
||||
.Fd #include <sys/mman.h>
|
||||
.Fn msync "caddr_t addr" "int len" "int flags"
|
||||
.Fn msync "caddr_t addr" "size_t len" "int flags"
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Fn msync
|
||||
|
|
|
|||
Loading…
Reference in a new issue