From 7f3caba522f4d24764f29d83aa2de9198bb7f01c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 24 May 2024 06:52:22 +0200 Subject: Adding upstream version 6.8. Signed-off-by: Daniel Baumann --- man3/futimes.3 | 106 --------------------------------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 man3/futimes.3 (limited to 'man3/futimes.3') diff --git a/man3/futimes.3 b/man3/futimes.3 deleted file mode 100644 index f008526..0000000 --- a/man3/futimes.3 +++ /dev/null @@ -1,106 +0,0 @@ -'\" t -.\" Copyright (c) 2006, 2008, Michael Kerrisk -.\" -.\" SPDX-License-Identifier: Linux-man-pages-copyleft -.\" -.TH futimes 3 2023-10-31 "Linux man-pages 6.7" -.SH NAME -futimes, lutimes \- change file timestamps -.SH LIBRARY -Standard C library -.RI ( libc ", " \-lc ) -.SH SYNOPSIS -.nf -.B #include -.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 -.BR 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 -.BR 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 -.BR 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 -.BR 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 -.BR 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 -.BR utimensat (2) -system call. -.SH SEE ALSO -.BR utime (2), -.BR utimensat (2), -.BR symlink (7) -- cgit v1.2.3