summaryrefslogtreecommitdiff
path: root/lib/libc/sys/kqueue.2
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/sys/kqueue.2')
-rw-r--r--lib/libc/sys/kqueue.24
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/kqueue.2 b/lib/libc/sys/kqueue.2
index 0ea64bbe0801..afb7e9869bae 100644
--- a/lib/libc/sys/kqueue.2
+++ b/lib/libc/sys/kqueue.2
@@ -39,7 +39,7 @@
.Ft int
.Fn kqueue "void"
.Ft int
-.Fn kevent "int kq" "int nchanges" "struct kevent **changelist" "int nevents" "struct kevent *eventlist" "struct timespec *timeout"
+.Fn kevent "int kq" "const struct kevent *changelist" "int nchanges" "struct kevent *eventlist" "int nevents" "const struct timespec *timeout"
.Sh DESCRIPTION
.Fn kqueue
provides a generic method of notifying the user when an event
@@ -77,7 +77,7 @@ which will allow sharing of the kqueue between two processes.
is used to register events with the queue, and return any pending
events to the user.
.Fa changelist
-is a pointer to an array of pointers to
+is a pointer to an array of
.Va kevent
structures, as defined in
.Aq Pa event.h .