OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / LDP_man-pages / original / man2 / futimesat.2
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 2006, Michael Kerrisk
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\"
26 .TH FUTIMESAT 2 2009-12-13 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 futimesat \- change timestamps of a file relative to a \
29 directory file descriptor
30 .SH SYNOPSIS
31 .nf
32 .B #include <fcntl.h>           /* Definition of AT_* constants */
33 .sp
34 .BI "int futimesat(int " dirfd ", const char *" pathname ,
35 .BI "              const struct timeval " times [2]);
36 .fi
37 .sp
38 .in -4n
39 Feature Test Macro Requirements for glibc (see
40 .BR feature_test_macros (7)):
41 .in
42 .sp
43 .BR futimesat ():
44 .br
45 Since glibc 2.10: _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L
46 .br
47 Before glibc 2.10:
48 _ATFILE_SOURCE
49 .SH DESCRIPTION
50 This system call is obsolete.
51 Use
52 .BR utimensat (2)
53 instead.
54
55 The
56 .BR futimesat ()
57 system call operates in exactly the same way as
58 .BR utimes (2),
59 except for the differences described in this manual page.
60
61 If the pathname given in
62 .I pathname
63 is relative, then it is interpreted relative to the directory
64 referred to by the file descriptor
65 .I dirfd
66 (rather than relative to the current working directory of
67 the calling process, as is done by
68 .BR utimes (2)
69 for a relative pathname).
70
71 If
72 .I pathname
73 is relative and
74 .I dirfd
75 is the special value
76 .BR AT_FDCWD ,
77 then
78 .I pathname
79 is interpreted relative to the current working
80 directory of the calling process (like
81 .BR utimes (2)).
82
83 If
84 .I pathname
85 is absolute, then
86 .I dirfd
87 is ignored.
88 .SH "RETURN VALUE"
89 On success,
90 .BR futimesat ()
91 returns a 0.
92 On error, \-1 is returned and
93 .I errno
94 is set to indicate the error.
95 .SH ERRORS
96 The same errors that occur for
97 .BR utimes (2)
98 can also occur for
99 .BR futimesat ().
100 The following additional errors can occur for
101 .BR futimesat ():
102 .TP
103 .B EBADF
104 .I dirfd
105 is not a valid file descriptor.
106 .TP
107 .B ENOTDIR
108 .I pathname
109 is relative and
110 .I dirfd
111 is a file descriptor referring to a file other than a directory.
112 .SH VERSIONS
113 .BR futimesat ()
114 was added to Linux in kernel 2.6.16.
115 .SH "CONFORMING TO"
116 This system call is nonstandard.
117 It was implemented from a specification that was proposed for POSIX.1,
118 but that specification was replaced by the one for
119 .BR utimensat (2).
120
121 A similar system call exists on Solaris.
122 .SH NOTES
123 .SS Glibc Notes
124 If
125 .I pathname
126 is NULL, then the glibc
127 .BR futimesat ()
128 wrapper function updates the times for the file referred to by
129 .IR dirfd .
130 .\" The Solaris futimesat() also has this strangeness.
131 .SH "SEE ALSO"
132 .BR stat (2),
133 .BR utimensat (2),
134 .BR utimes (2),
135 .BR futimes (3),
136 .BR path_resolution (7)