aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/event.h')
-rw-r--r--sys/sys/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h
index 1141a22b8109..d413428a528a 100644
--- a/sys/sys/event.h
+++ b/sys/sys/event.h
@@ -306,7 +306,7 @@ struct knote {
struct aioliojob *p_lio; /* LIO job pointer */
void *p_v; /* generic other pointer */
} kn_ptr;
- struct filterops *kn_fop;
+ const struct filterops *kn_fop;
#define kn_id kn_kevent.ident
#define kn_filter kn_kevent.filter
@@ -349,7 +349,7 @@ void knlist_cleardel(struct knlist *knl, struct thread *td,
void knote_fdclose(struct thread *p, int fd);
int kqfd_register(int fd, struct kevent *kev, struct thread *p,
int mflag);
-int kqueue_add_filteropts(int filt, struct filterops *filtops);
+int kqueue_add_filteropts(int filt, const struct filterops *filtops);
int kqueue_del_filteropts(int filt);
void kqueue_drain_schedtask(void);