summaryrefslogtreecommitdiff
path: root/minix/lib/libc/sys/futimens.c
blob: 73b3315a9ddf54bc7d6ad7a4a8feecbcb46c133b (plain)
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
#include <sys/cdefs.h>
#include "namespace.h"
#include <lib.h>

#include <string.h>
#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;

  memset(&m, 0, sizeof(m));
  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;

  return(_syscall(VFS_PROC_NR, VFS_UTIMENS, &m));
}