diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-11-14 10:16:16 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-11-14 10:16:16 +0000 |
commit | 776bc1ebd2a451bf591dc8571888384a46428e76 (patch) | |
tree | 58be150112ebf39b50ac42a44d87a39bdd34c4a3 /lib | |
parent | 8e2c4c2a8f19c3958363dbb1e1be496bb9bb8b27 (diff) |
EVFILT_EXCEPT operates on sockets (emil engler)
or pseudo terminals (visa);
ok mpi visa
Diffstat (limited to 'lib')
-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 |