mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 15:22:15 +00:00
implement futimens and utimensat
This commit is contained in:
parent
b1b465c438
commit
eda8e9da76
@ -86,6 +86,9 @@ int mkdirat(int, const char *, mode_t);
|
|||||||
int mknodat(int, const char *, mode_t, dev_t);
|
int mknodat(int, const char *, mode_t, dev_t);
|
||||||
int mkfifoat(int, const char *, mode_t);
|
int mkfifoat(int, const char *, mode_t);
|
||||||
|
|
||||||
|
int futimens(int, const struct timespec [2]);
|
||||||
|
int utimensat(int, const char *, const struct timespec [2], int);
|
||||||
|
|
||||||
#ifdef _BSD_SOURCE
|
#ifdef _BSD_SOURCE
|
||||||
int lchmod(const char *, mode_t);
|
int lchmod(const char *, mode_t);
|
||||||
#endif
|
#endif
|
||||||
|
6
src/stat/futimens.c
Normal file
6
src/stat/futimens.c
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
int futimens(int fd, const struct timespec times[2])
|
||||||
|
{
|
||||||
|
return utimensat(fd, 0, times, 0);
|
||||||
|
}
|
7
src/stat/utimensat.c
Normal file
7
src/stat/utimensat.c
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#include <sys/stat.h>
|
||||||
|
#include "syscall.h"
|
||||||
|
|
||||||
|
int utimensat(int fd, const char *path, const struct timespec times[2], int flags)
|
||||||
|
{
|
||||||
|
return syscall4(__NR_utimensat, fd, (long)path, (long)times, flags);
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user