diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-12-24 16:39:55 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-12-24 16:53:04 +0100 |
commit | 4a4d89b682d2a8d32e899c4b47950f64df74fb7c (patch) | |
tree | a76ee43721157dbbbe53ce1bd0c2db000ab6689f /src/shared/util.h | |
parent | de33fc625725d199629ed074d6278504deb23deb (diff) |
util: make creation time xattr logic more generic
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 7f02f42c61..4d5b9824d9 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -1062,3 +1062,7 @@ union inotify_event_buffer { int ptsname_malloc(int fd, char **ret); int openpt_in_namespace(pid_t pid, int flags); + +int fd_setcrtime(int fd, usec_t usec); +int fd_getcrtime(int fd, usec_t *usec); +int path_getcrtime(const char *p, usec_t *usec); |