summaryrefslogtreecommitdiffstats
path: root/sys/sys/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/event.h')
-rw-r--r--sys/sys/event.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/event.h b/sys/sys/event.h
index ca53c5b..366b347 100644
--- a/sys/sys/event.h
+++ b/sys/sys/event.h
@@ -94,7 +94,7 @@ struct kevent {
*/
#include <sys/queue.h>
struct knote;
-SLIST_HEAD(klist, struct knote);
+SLIST_HEAD(klist, knote);
#ifdef _KERNEL
@@ -114,9 +114,9 @@ struct filterops {
};
struct knote {
- SLIST_ENTRY(struct knote) kn_link; /* for fd */
- SLIST_ENTRY(struct knote) kn_selnext; /* for struct selinfo */
- TAILQ_ENTRY(struct knote) kn_tqe;
+ SLIST_ENTRY(knote) kn_link; /* for fd */
+ SLIST_ENTRY(knote) kn_selnext; /* for struct selinfo */
+ TAILQ_ENTRY(knote) kn_tqe;
struct kqueue *kn_kq; /* which queue we are on */
struct kevent kn_kevent;
int kn_status;
OpenPOWER on IntegriCloud