diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2024-11-09 15:54:15 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2024-11-09 15:54:15 +0000 |
commit | 788b0e2545a5e995352f053779cd2e46793d9ec2 (patch) | |
tree | bb18b172e1ad66a704584b1a61d2ce8f6189c78a /share | |
parent | b5a738d7b2a9d0da6e570c887dea355f775dbb64 (diff) |
The 'flags' parameter has been removed from falloc(9) in 2018.
ok miod@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/file.9 | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/share/man/man9/file.9 b/share/man/man9/file.9 index e3bd8cc645d..22c7466cb17 100644 --- a/share/man/man9/file.9 +++ b/share/man/man9/file.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: file.9,v 1.22 2020/01/03 05:37:00 visa Exp $ +.\" $OpenBSD: file.9,v 1.23 2024/11/09 15:54:14 matthieu Exp $ .\" .\" Copyright (c) 2002 Artur Grabowski <art@openbsd.org> .\" All rights reserved. @@ -22,7 +22,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: January 3 2020 $ +.Dd $Mdocdate: November 9 2024 $ .Dt FALLOC 9 .Os .Sh NAME @@ -40,7 +40,7 @@ .In sys/file.h .In sys/filedesc.h .Ft int -.Fn falloc "struct proc *p" "int flags" "struct file **resultfp" "int *resultfd" +.Fn falloc "struct proc *p" "struct file **resultfp" "int *resultfd" .Ft int .Fn fdrelease "struct proc *p" "int fd" .Ft void @@ -74,11 +74,6 @@ and various special purpose communication endpoints. .Pp A new file and a file descriptor for it are allocated with the function .Fn falloc . -The -.Fa flags -argument can be used to set the -.Dv UF_EXCLOSE -flag on the new descriptor. The larval file and fd are returned via .Fa resultfp and |