fix a bug where signal events didn't set the flags for attach/detach..
PR: 72234 MFC after: 2 days
This commit is contained in:
parent
b8a2c7ca02
commit
d46316e8f9
@ -441,6 +441,7 @@ filt_timerattach(struct knote *kn)
|
||||
}
|
||||
|
||||
kn->kn_flags |= EV_CLEAR; /* automatically set */
|
||||
kn->kn_flags &= ~EV_DETACHED; /* knlist_add usually sets it */
|
||||
MALLOC(calloutp, struct callout *, sizeof(*calloutp),
|
||||
M_KQUEUE, M_WAITOK);
|
||||
callout_init(calloutp, 1);
|
||||
@ -461,6 +462,7 @@ filt_timerdetach(struct knote *kn)
|
||||
callout_drain(calloutp);
|
||||
FREE(calloutp, M_KQUEUE);
|
||||
atomic_add_int(&kq_ncallouts, -1);
|
||||
kn->kn_flags |= EV_DETACHED; /* knlist_remove usually clears it */
|
||||
}
|
||||
|
||||
/* XXX - move to kern_timeout.c? */
|
||||
|
Loading…
Reference in New Issue
Block a user