diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | inotail.1 | 2 | ||||
-rw-r--r-- | inotail.c | 4 | ||||
-rw-r--r-- | inotail.h | 4 | ||||
-rw-r--r-- | inotify-syscalls.h | 2 | ||||
-rw-r--r-- | inotify.h | 2 |
6 files changed, 8 insertions, 8 deletions
@@ -22,7 +22,7 @@ inotail is licensed under the terms of the GNU General Public License Version 2. You can find the full text in the file LICENSE in the source tree of inotail. The files inotify.h and inotify-syscalls.h were taken from the source tree of -the linux kernel and slightly altered. Both are licensed under the terms of the +the Linux kernel and slightly altered. Both are licensed under the terms of the GNU General Public License v2. -- Tobias Klauser <tklauser@distanz.ch> @@ -23,7 +23,7 @@ of the Linux kernel to speed up tailing files in the follow mode (the '\-f' option). Standard tail polls the file every second by default while inotail listens to special events sent by the kernel through the inotify API to determine whether a file needs to be reread. \fINote:\fR inotail will not work -on systems running kernels without Inotify. To enable Inotify , please set +on systems running a kernel without inotify. To enable inotify, please set CONFIG_INOTIFY=y in your kernel configuration and recompile it. .PP Currently inotail is not fully compatible to neither POSIX or GNU tail but might @@ -1,7 +1,7 @@ /* * inotail.c - * A fast implementation of tail which uses the inotify-API present in - * recent Linux Kernels. + * A fast implementation of tail which uses the inotify API present in + * recent versions of the Linux kernel. * * Copyright (C) 2005-2006, Tobias Klauser <tklauser@distanz.ch> * @@ -28,9 +28,9 @@ struct file_struct { #endif /* DEBUG */ #ifdef __GNUC__ -# define unlikely(x) __builtin_expect(!!(x), 0) /* Taken from linux kernel source */ +# define unlikely(x) __builtin_expect(!!(x), 0) #else # define unlikely(x) (x) -#endif +#endif /* __GNUC__ */ #endif /* _INOTAIL_H */ diff --git a/inotify-syscalls.h b/inotify-syscalls.h index fa6dcd4..a1d5408 100644 --- a/inotify-syscalls.h +++ b/inotify-syscalls.h @@ -1,6 +1,6 @@ /* * Inotify syscall numbers - * Taken from the linux kernel source tree + * Taken from the Linux kernel source tree * * Licensed under the terms of the GNU General Public License Version 2. * @@ -1,6 +1,6 @@ /* * Inode based directory notification for Linux - * Taken from the linux kernel source tree + * Taken from the Linux kernel source tree * * Licensed under the terms of the GNU General Public License Version 2. * |