summaryrefslogtreecommitdiff
path: root/lib/libc/sys/kqueue.2
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2000-07-18 19:31:52 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2000-07-18 19:31:52 +0000
commita8e65b915e6a2784c059d273ef1ea302cca0c76b (patch)
tree55a5a189cc943f39c9c85cdd9109a3e883bfd3b8 /lib/libc/sys/kqueue.2
parentf8fc6141fb75e00821d83c4ee03e64cbcacba37e (diff)
Notes
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 .