summaryrefslogtreecommitdiff
path: root/inotail.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2006-09-26 13:52:53 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2006-09-26 13:52:53 +0200
commit26cc319274f9f7e99a56d55c3fd0872e2e2527a1 (patch)
treea8e71554bb4b89f5010ed48778cced671fb6bed3 /inotail.c
parent52ab266b8930d2b82554c8df87f8146a07e5f33b (diff)
Add unlikely macro
And use it for a really unlikely case
Diffstat (limited to 'inotail.c')
-rw-r--r--inotail.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/inotail.c b/inotail.c
index c0c5302..da881d4 100644
--- a/inotail.c
+++ b/inotail.c
@@ -245,8 +245,7 @@ static int watch_files(struct file_struct *f, int n_files)
}
}
- /* Very unlikely! */
- if (!fil)
+ if (unlikely(!fil))
break;
if (inev->mask & IN_MODIFY) {
id=a7fe0450b0142d0eb4a543840a43e22682debf25'>tools/lib/bpf/libbpf.h6
2 files changed, 8 insertions, 14 deletions
diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c