From 717104720438689588cc958bf3016b3f7930189b Mon Sep 17 00:00:00 2001 From: jlemon Date: Tue, 18 Jul 2000 19:31:52 +0000 Subject: Simplify kqueue API slightly. Discussed on: -arch --- sys/sys/sysproto.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/sys/sysproto.h') diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 0ead29f..2696e5a 100644 --- a/sys/sys/sysproto.h +++ b/sys/sys/sysproto.h @@ -1015,11 +1015,11 @@ struct kqueue_args { }; struct kevent_args { int fd; char fd_[PAD_(int)]; + const struct kevent * changelist; char changelist_[PAD_(const struct kevent *)]; int nchanges; char nchanges_[PAD_(int)]; - struct kevent ** changelist; char changelist_[PAD_(struct kevent **)]; - int nevents; char nevents_[PAD_(int)]; struct kevent * eventlist; char eventlist_[PAD_(struct kevent *)]; - struct timespec * timeout; char timeout_[PAD_(struct timespec *)]; + int nevents; char nevents_[PAD_(int)]; + const struct timespec * timeout; char timeout_[PAD_(const struct timespec *)]; }; struct __cap_get_proc_args { struct cap * cap_p; char cap_p_[PAD_(struct cap *)]; -- cgit v1.1