diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-14 21:52:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-14 21:52:16 +0000 |
commit | 289ff0e3411543446f40cfa45db606431a4657e1 (patch) | |
tree | 5353a8698e9e5c1dc47f2fd85928dd83aa27b640 /miscutils | |
parent | b0e5d42d4f3245cb6d7511fc03a09adb82c09783 (diff) | |
download | busybox-289ff0e3411543446f40cfa45db606431a4657e1.tar.gz |
inotify: document waiting behavior
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/inotifyd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/inotifyd.c b/miscutils/inotifyd.c index 0c4b06784..216a69654 100644 --- a/miscutils/inotifyd.c +++ b/miscutils/inotifyd.c @@ -103,7 +103,7 @@ int inotifyd_main(int argc UNUSED_PARAM, char **argv) if (bb_got_signal) break; n = poll(&pfd, 1, -1); - /* Signal interrupted us? */ + // Signal interrupted us? if (n < 0 && errno == EINTR) goto again; // Under Linux, above if() is not necessary. |