summaryrefslogtreecommitdiffstats
path: root/usr.bin/tail
diff options
context:
space:
mode:
authorjlemon <jlemon@FreeBSD.org>2000-07-18 19:38:38 +0000
committerjlemon <jlemon@FreeBSD.org>2000-07-18 19:38:38 +0000
commitd7b89f04572dd50f8819106cb1401b444e3af847 (patch)
treef8bdc62f0537d7534323b90c60192a9ba0488e0d /usr.bin/tail
parent717104720438689588cc958bf3016b3f7930189b (diff)
downloadFreeBSD-src-d7b89f04572dd50f8819106cb1401b444e3af847.zip
FreeBSD-src-d7b89f04572dd50f8819106cb1401b444e3af847.tar.gz
Convert calls to match new kqueue API.
Diffstat (limited to 'usr.bin/tail')
-rw-r--r--usr.bin/tail/forward.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/tail/forward.c b/usr.bin/tail/forward.c
index 526ff2f..a864edd 100644
--- a/usr.bin/tail/forward.c
+++ b/usr.bin/tail/forward.c
@@ -193,7 +193,6 @@ forward(fp, style, off, sbp)
switch (action) {
case ADD_EVENTS: {
int n = 0;
- struct kevent *evp[2];
struct timespec ts = { 0, 0 };
if (Fflag && fileno(fp) != STDIN_FILENO) {
@@ -201,16 +200,14 @@ forward(fp, style, off, sbp)
ev[n].filter = EVFILT_VNODE;
ev[n].flags = EV_ADD | EV_ENABLE | EV_CLEAR;
ev[n].fflags = NOTE_DELETE | NOTE_RENAME;
- evp[n] = &ev[n];
n++;
}
ev[n].ident = fileno(fp);
ev[n].filter = EVFILT_READ;
ev[n].flags = EV_ADD | EV_ENABLE;
- evp[n] = &ev[n];
n++;
- if (kevent(kq, n, evp, 0, NULL, &ts) < 0) {
+ if (kevent(kq, ev, n, NULL, 0, &ts) < 0) {
close(kq);
kq = -1;
action = USE_SLEEP;
@@ -221,7 +218,7 @@ forward(fp, style, off, sbp)
}
case USE_KQUEUE:
- if (kevent(kq, 0, NULL, 1, ev, NULL) < 0)
+ if (kevent(kq, NULL, 0, ev, 1, NULL) < 0)
err(1, "kevent");
if (ev->filter == EVFILT_VNODE) {
OpenPOWER on IntegriCloud