From 5050a2f042287f814f90d8dd314fa57384e6e778 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 14 Dec 2006 22:03:05 +0100 Subject: inotail.c: Move some macros to inotail.h Some typos and useless blank lines are also fixed. --- inotail.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'inotail.h') diff --git a/inotail.h b/inotail.h index e1590df..4c57867 100644 --- a/inotail.h +++ b/inotail.h @@ -18,12 +18,17 @@ struct file_struct { char *name; /* Name of file (or '-' for stdin) */ int fd; /* File descriptor (or -1 if file is not open */ off_t st_size; /* File size */ - - unsigned ignore; /* Wheter to ignore the file in further processing */ - + unsigned ignore; /* Whether to ignore the file in further processing */ int i_watch; /* Inotify watch associated with file_struct */ }; +#define IS_PIPELIKE(mode) \ + (S_ISFIFO(mode) || S_ISSOCK(mode)) + +/* inotail works on these file types */ +#define IS_TAILABLE(mode) \ + (S_ISREG(mode) || IS_PIPELIKE(mode) || S_ISCHR(mode)) + #ifdef DEBUG # define dprintf(fmt, args...) fprintf(stderr, fmt, ##args) #else -- cgit v1.2.3-54-g00ecf