Add utimensat(2) specific errors.
This commit is contained in:
parent
6d42eea15e
commit
c37d15ffcf
|
@ -1,4 +1,4 @@
|
||||||
.\" $NetBSD: utimes.2,v 1.37 2013/03/08 16:52:11 christos Exp $
|
.\" $NetBSD: utimes.2,v 1.38 2013/07/29 14:34:59 njoly Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 1990, 1993
|
.\" Copyright (c) 1990, 1993
|
||||||
.\" The Regents of the University of California. All rights reserved.
|
.\" The Regents of the University of California. All rights reserved.
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
.\"
|
.\"
|
||||||
.\" @(#)utimes.2 8.1 (Berkeley) 6/4/93
|
.\" @(#)utimes.2 8.1 (Berkeley) 6/4/93
|
||||||
.\"
|
.\"
|
||||||
.Dd March 8, 2013
|
.Dd July 19, 2013
|
||||||
.Dt UTIMES 2
|
.Dt UTIMES 2
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
@ -167,10 +167,7 @@ to set the current time, or to
|
||||||
to let the time unchanged (this allows changing access time but not
|
to let the time unchanged (this allows changing access time but not
|
||||||
modification time, and vice-versa).
|
modification time, and vice-versa).
|
||||||
.Sh RETURN VALUES
|
.Sh RETURN VALUES
|
||||||
Upon successful completion, a value of 0 is returned.
|
.Rv -std utimes lutimes futimes utimens lutimens futimens utimensat
|
||||||
Otherwise, a value of \-1 is returned and
|
|
||||||
.Va errno
|
|
||||||
is set to indicate the error.
|
|
||||||
.Sh ERRORS
|
.Sh ERRORS
|
||||||
.Fn utimes ,
|
.Fn utimes ,
|
||||||
.Fn lutimes ,
|
.Fn lutimes ,
|
||||||
|
@ -219,6 +216,24 @@ does not match the owner of the file and is not the super-user.
|
||||||
The file system containing the file is mounted read-only.
|
The file system containing the file is mounted read-only.
|
||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
|
In addition,
|
||||||
|
.Fn utimensat
|
||||||
|
will fail if:
|
||||||
|
.Bl -tag -width Er
|
||||||
|
.It Bq Er EBADF
|
||||||
|
.Fa path
|
||||||
|
does not specify an absolute path and
|
||||||
|
.Fa fd
|
||||||
|
is neither
|
||||||
|
.Dv AT_FDCWD
|
||||||
|
nor a valid file descriptor open for reading or searching.
|
||||||
|
.It Bq Er ENOTDIR
|
||||||
|
.Fa path
|
||||||
|
is not an absolute path and
|
||||||
|
.Fa fd
|
||||||
|
is a file descriptor associated with a non-directory file.
|
||||||
|
.El
|
||||||
|
.Pp
|
||||||
.Fn futimes
|
.Fn futimes
|
||||||
and
|
and
|
||||||
.Fn futimens
|
.Fn futimens
|
||||||
|
|
Loading…
Reference in New Issue