summaryrefslogtreecommitdiffstats
path: root/man3/futimes.3
blob: bccfa12964d80485b501434013a5131e938e3e96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
'\" t
.\" Copyright (c) 2006, 2008, Michael Kerrisk
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.TH futimes 3 (date) "Linux man-pages (unreleased)"
.SH NAME
futimes, lutimes \- change file timestamps
.SH LIBRARY
Standard C library
.RI ( libc ", " \-lc )
.SH SYNOPSIS
.nf
.B #include <sys/time.h>
.P
.BI "int futimes(int " fd ", const struct timeval " tv [2]);
.BI "int lutimes(const char *" filename ", const struct timeval " tv [2]);
.fi
.P
.RS -4
Feature Test Macro Requirements for glibc (see
.MR feature_test_macros 7 ):
.RE
.P
.BR futimes (),
.BR lutimes ():
.nf
    Since glibc 2.19:
        _DEFAULT_SOURCE
    glibc 2.19 and earlier:
        _BSD_SOURCE
.fi
.SH DESCRIPTION
.BR futimes ()
changes the access and modification times of a file in the same way as
.MR utimes 2 ,
with the difference that the file whose timestamps are to be changed
is specified via a file descriptor,
.IR fd ,
rather than via a pathname.
.P
.BR lutimes ()
changes the access and modification times of a file in the same way as
.MR utimes 2 ,
with the difference that if
.I filename
refers to a symbolic link, then the link is not dereferenced:
instead, the timestamps of the symbolic link are changed.
.SH RETURN VALUE
On success, zero is returned.
On error, \-1 is returned, and
.I errno
is set to indicate the error.
.SH ERRORS
Errors are as for
.MR utimes 2 ,
with the following additions for
.BR futimes ():
.TP
.B EBADF
.I fd
is not a valid file descriptor.
.TP
.B ENOSYS
The
.I /proc
filesystem could not be accessed.
.P
The following additional error may occur for
.BR lutimes ():
.TP
.B ENOSYS
The kernel does not support this call; Linux 2.6.22 or later is required.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.MR attributes 7 .
.TS
allbox;
lbx lb lb
l l l.
Interface	Attribute	Value
T{
.na
.nh
.BR futimes (),
.BR lutimes ()
T}	Thread safety	MT-Safe
.TE
.SH STANDARDS
Linux, BSD.
.SH HISTORY
.TP
.BR futimes ()
glibc 2.3.
.TP
.BR lutimes ()
glibc 2.6.
.SH NOTES
.BR lutimes ()
is implemented using the
.MR utimensat 2
system call.
.SH SEE ALSO
.MR utime 2 ,
.MR utimensat 2 ,
.MR symlink 7