diff options
| author | Karel Zak <kzak@redhat.com> | 2014-12-05 15:30:04 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2014-12-05 15:30:04 +0100 |
| commit | 372112e908e73a9737ad28ee7e33da271654baff (patch) | |
| tree | f34a58c619de1e94942affb076b896044c6520a5 /include/fileutils.h | |
| parent | 109df14fad4e9570e26950913ebace6c79289400 (diff) | |
| download | util-linux-372112e908e73a9737ad28ee7e33da271654baff.tar.gz | |
libmount: add new libmnt_monitor API
It's usually enough to us [e]poll() to monitor kernel mount table, but
there is no way how to monitor changes in userspace mount options
(e.g. _netdev). The management of these mount options is completely
hidden in libmount and /rub/mount/utab is private libmount file.
This patch introduces new libmnt_mount API to monitor also userspace
mount table.
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'include/fileutils.h')
| -rw-r--r-- | include/fileutils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/fileutils.h b/include/fileutils.h index 98798f7ee9..3353f69a07 100644 --- a/include/fileutils.h +++ b/include/fileutils.h @@ -1,6 +1,12 @@ #ifndef UTIL_LINUX_FILEUTILS #define UTIL_LINUX_FILEUTILS +#include <stdio.h> +#include <fcntl.h> +#include <unistd.h> + +#include "c.h" + extern int xmkstemp(char **tmpname, char *dir); static inline FILE *xfmkstemp(char **tmpname, char *dir) |
