diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:58:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:58:05 +0100 |
commit | 7760171904ef007f19e8f46aa240a00e382d5b74 (patch) | |
tree | 217d98308a3039e106efde5fd6a7b6a657916950 /src/basic/fs-util.h | |
parent | 4fee397531c97d22e41fb3f02452e82d412fe2b5 (diff) |
util-lib: move inotify-related definitions to fs-util.[ch]
Diffstat (limited to 'src/basic/fs-util.h')
-rw-r--r-- | src/basic/fs-util.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h index 0e1906ba3f..b94873e65b 100644 --- a/src/basic/fs-util.h +++ b/src/basic/fs-util.h @@ -21,9 +21,11 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include <sys/types.h> #include <fcntl.h> +#include <sys/inotify.h> +#include <sys/types.h> #include <unistd.h> +#include <limits.h> #include "time-util.h" @@ -58,3 +60,15 @@ int mknod_atomic(const char *path, mode_t mode, dev_t dev); int mkfifo_atomic(const char *path, mode_t mode); int get_files_in_directory(const char *path, char ***list); + +#define INOTIFY_EVENT_MAX (sizeof(struct inotify_event) + NAME_MAX + 1) + +#define FOREACH_INOTIFY_EVENT(e, buffer, sz) \ + for ((e) = &buffer.ev; \ + (uint8_t*) (e) < (uint8_t*) (buffer.raw) + (sz); \ + (e) = (struct inotify_event*) ((uint8_t*) (e) + sizeof(struct inotify_event) + (e)->len)) + +union inotify_event_buffer { + struct inotify_event ev; + uint8_t raw[INOTIFY_EVENT_MAX]; +}; |