diff options
author | 2020-11-14 10:16:15 +0000 | |
---|---|---|
committer | 2020-11-14 10:16:15 +0000 | |
commit | 7447bb90f625d7cb6f76e9f039c21a8128bcb1e0 (patch) | |
tree | c7d5efeb866c8cc43797b06c72c55844659803ca /lib/libc | |
parent | We should only grab the drm_global_mutex lock for legacy drivers. (diff) | |
download | wireguard-openbsd-7447bb90f625d7cb6f76e9f039c21a8128bcb1e0.tar.xz wireguard-openbsd-7447bb90f625d7cb6f76e9f039c21a8128bcb1e0.zip |
EVFILT_EXCEPT operates on sockets (emil engler)
or pseudo terminals (visa);
ok mpi visa
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/kqueue.2 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/sys/kqueue.2 b/lib/libc/sys/kqueue.2 index a7ca727fe4e..3f4ccee24f6 100644 --- a/lib/libc/sys/kqueue.2 +++ b/lib/libc/sys/kqueue.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: kqueue.2,v 1.42 2020/06/22 13:42:06 jmc Exp $ +.\" $OpenBSD: kqueue.2,v 1.43 2020/11/14 10:16:15 jmc Exp $ .\" .\" Copyright (c) 2000 Jonathan Lemon .\" All rights reserved. @@ -26,7 +26,7 @@ .\" .\" $FreeBSD: src/lib/libc/sys/kqueue.2,v 1.18 2001/02/14 08:48:35 guido Exp $ .\" -.Dd $Mdocdate: June 22 2020 $ +.Dd $Mdocdate: November 14 2020 $ .Dt KQUEUE 2 .Os .Sh NAME @@ -315,7 +315,8 @@ Takes a descriptor as the identifier, and returns whenever one of the specified exceptional conditions has occurred on the descriptor. Conditions are specified in .Fa fflags . -Currently, a filter can monitor the reception of out-of-band data with +Currently, a filter can monitor the reception of out-of-band data +on a socket or pseudo terminal with .Dv NOTE_OOB . .It Dv EVFILT_WRITE Takes a descriptor as the identifier, and returns whenever |