plan9port/src/lib9/dirfwstat.c

38 lines
593 B
C
Raw Normal View History

2003-11-23 18:12:54 +00:00
#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>
#include <sys/time.h>
2003-11-23 19:49:17 +00:00
#if !defined(_HAVEFUTIMES) && defined(_HAVEFUTIMESAT)
static int
futimes(int fd, struct timeval *tv)
{
return futimesat(fd, 0, tv);
}
2003-11-24 00:43:41 +00:00
#elif !defined(_HAVEFUTIMES)
static int
futimes(int fd, struct timeval *tv)
{
werrstr("futimes not available");
return -1;
}
2003-11-23 19:49:17 +00:00
#endif
2003-11-23 18:12:54 +00:00
int
dirfwstat(int fd, Dir *dir)
{
struct timeval tv[2];
/* BUG handle more */
if(dir->mtime == ~0ULL)
return 0;
tv[0].tv_sec = dir->mtime;
tv[0].tv_usec = 0;
tv[1].tv_sec = dir->mtime;
tv[1].tv_usec = 0;
return futimes(fd, tv);
}
2003-11-23 19:49:17 +00:00