2003-07-31 19:26:38 +00:00
|
|
|
/* futimes -- change access and modification times of open file. Linux version.
|
2019-01-01 00:11:28 +00:00
|
|
|
Copyright (C) 2002-2019 Free Software Foundation, Inc.
|
2003-07-12 08:23:50 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2003-07-12 08:23:50 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sysdep.h>
|
2003-07-16 00:10:33 +00:00
|
|
|
#include <string.h>
|
2007-05-10 21:44:41 +00:00
|
|
|
#include <time.h>
|
2003-07-12 08:23:50 +00:00
|
|
|
#include <utime.h>
|
|
|
|
#include <sys/time.h>
|
2012-03-20 23:00:23 +00:00
|
|
|
#include <_itoa.h>
|
2005-01-07 02:42:54 +00:00
|
|
|
#include <fcntl.h>
|
2003-07-12 08:23:50 +00:00
|
|
|
|
2007-05-10 21:44:41 +00:00
|
|
|
|
|
|
|
/* Change the access time of the file associated with FD to TVP[0] and
|
|
|
|
the modification time of FILE to TVP[1].
|
|
|
|
|
|
|
|
Starting with 2.6.22 the Linux kernel has the utimensat syscall which
|
2014-06-25 11:36:10 +00:00
|
|
|
can be used to implement futimes. */
|
2003-07-12 08:23:50 +00:00
|
|
|
int
|
|
|
|
__futimes (int fd, const struct timeval tvp[2])
|
|
|
|
{
|
2007-05-10 21:44:41 +00:00
|
|
|
/* The utimensat system call expects timespec not timeval. */
|
|
|
|
struct timespec ts[2];
|
|
|
|
if (tvp != NULL)
|
|
|
|
{
|
|
|
|
if (tvp[0].tv_usec < 0 || tvp[0].tv_usec >= 1000000
|
|
|
|
|| tvp[1].tv_usec < 0 || tvp[1].tv_usec >= 1000000)
|
2015-10-13 19:00:45 +00:00
|
|
|
return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
|
2007-05-10 21:44:41 +00:00
|
|
|
|
|
|
|
TIMEVAL_TO_TIMESPEC (&tvp[0], &ts[0]);
|
|
|
|
TIMEVAL_TO_TIMESPEC (&tvp[1], &ts[1]);
|
|
|
|
}
|
|
|
|
|
2015-08-21 16:57:15 +00:00
|
|
|
return INLINE_SYSCALL (utimensat, 4, fd, NULL, tvp ? &ts : NULL, 0);
|
2003-07-12 08:23:50 +00:00
|
|
|
}
|
|
|
|
weak_alias (__futimes, futimes)
|