manual page distributed with 4.2BSD
[unix-history] / usr / src / lib / libc / sys / utimes.2
CommitLineData
14d9e8bc
KM
1.\" Copyright (c) 1980 Regents of the University of California.
2.\" All rights reserved. The Berkeley software License Agreement
3.\" specifies the terms and conditions for redistribution.
4.\"
481ecf6a 5.\" @(#)utimes.2 5.1 (Berkeley) %G%
14d9e8bc 6.\"
481ecf6a 7.TH UTIMES 2 "2 July 1983"
14d9e8bc
KM
8.UC 4
9.SH NAME
481ecf6a 10utimes \- set file times
14d9e8bc
KM
11.SH SYNOPSIS
12.nf
481ecf6a
KM
13.ft B
14#include <sys/time.h>
14d9e8bc 15.PP
481ecf6a
KM
16.ft B
17utimes(file, tvp)
18char *file;
19struct timeval *tvp[2];
14d9e8bc
KM
20.fi
21.SH DESCRIPTION
22The
481ecf6a 23.I utimes
14d9e8bc
KM
24call
25uses the
481ecf6a 26\*(lqaccessed\*(rq and \*(lqupdated\*(rq times in that order
14d9e8bc 27from the
481ecf6a 28.I tvp
14d9e8bc
KM
29vector
30to set the corresponding recorded times for
31.I file.
32.PP
33The caller must be the owner of the file or the super-user.
481ecf6a
KM
34The \*(lqinode-changed\*(rq time of the file is set to the current time.
35.SH "RETURN VALUE
36Upon successful completion, a value of 0 is returned.
37Otherwise, a value of \-1 is returned and
38.I errno
39is set to indicate the error.
40.SH "ERRORS
41.I Utime
42will fail if one or more of the following are true:
43.TP 15
44[EPERM]
45The pathname contained a character with the high-order bit set.
46.TP 15
47[ENOENT]
48The pathname was too long.
49.TP 15
50[ENOENT]
51The named file does not exist.
52.TP 15
53[ENOTDIR]
54A component of the path prefix is not a directory.
55.TP 15
56[EACCES]
57A component of the path prefix denies search permission.
58.TP 15
59[EPERM]
60The process is not super-user and not the owner of the file.
61.TP 15
62[EACCES]
63The effective user ID is not super-user and not the
64owner of the file and \fItimes\fP is NULL and write access
65is denied.
66.TP 15
67[EROFS]
68The file system containing the file is mounted read-only.
69.TP 15
70[EFAULT]
71.I Tvp
72points outside the process's allocated address space.
73.TP 15
74[ELOOP]
75Too many symbolic links were encountered in translating the pathname.
14d9e8bc 76.SH SEE ALSO
481ecf6a 77stat(2)