diff options
-rw-r--r-- | inotail.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -38,21 +38,15 @@ #include "inotail.h" #define PROGRAM_NAME "inotail" -/* inotify event buffer length for one file */ -#define INOTIFY_BUFLEN (4 * sizeof(struct inotify_event)) /* Print header with filename before tailing the file? */ static char verbose = 0; - /* Tailing relative to begin or end of file */ static char from_begin = 0; - /* Follow the file by name or by fd */ static enum follow_mode follow = FOLLOW_DESCRIPTOR; - /* Retry accessing the file if it got lost (e.g. deleted, moved) */ static char retry = 0; - /* Number of ignored files */ static int n_ignored = 0; |