2011-12-24 15:02:54 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-12-24 15:02:54 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
int futimens(int fd, const struct timespec tv[2])
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
static const struct timespec now[2] = { {0, UTIME_NOW}, {0, UTIME_NOW} };
|
|
|
|
|
|
|
|
if (tv == NULL) tv = now;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2013-11-28 19:33:53 +01:00
|
|
|
m.m_vfs_utimens.fd = fd;
|
|
|
|
m.m_vfs_utimens.atime = tv[0].tv_sec;
|
|
|
|
m.m_vfs_utimens.mtime = tv[1].tv_sec;
|
|
|
|
m.m_vfs_utimens.ansec = tv[0].tv_nsec;
|
|
|
|
m.m_vfs_utimens.mnsec = tv[1].tv_nsec;
|
|
|
|
m.m_vfs_utimens.name = NULL;
|
|
|
|
m.m_vfs_utimens.flags = 0;
|
2011-12-24 15:02:54 +01:00
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
return(_syscall(VFS_PROC_NR, VFS_UTIMENS, &m));
|
2011-12-24 15:02:54 +01:00
|
|
|
}
|