diff options
author | cheloha <cheloha@cvs.openbsd.org> | 2019-07-01 16:52:03 +0000 |
---|---|---|
committer | cheloha <cheloha@cvs.openbsd.org> | 2019-07-01 16:52:03 +0000 |
commit | 20a0715b777196e6a209fa53966e0c744e9a06d6 (patch) | |
tree | dc87a88be6fd982108370a896b1807629e26973b /lib/libc/sys | |
parent | bfb389930c282b20ada970197741f276fdd7d797 (diff) |
kevent(2): remove 24hr timeout limit
As with nanosleep(2), poll(2), and select(2), here we can chip away at
the timespec until it's empty. This lets us support the full range of
the timespec regardless of the kernel's HZ.
Update the manpage accordingly.
ok visa@
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/kqueue.2 | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/libc/sys/kqueue.2 b/lib/libc/sys/kqueue.2 index 693b29c8cd9..b744e50d53d 100644 --- a/lib/libc/sys/kqueue.2 +++ b/lib/libc/sys/kqueue.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: kqueue.2,v 1.38 2019/05/03 04:06:08 schwarze Exp $ +.\" $OpenBSD: kqueue.2,v 1.39 2019/07/01 16:52:02 cheloha 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: May 3 2019 $ +.Dd $Mdocdate: July 1 2019 $ .Dt KQUEUE 2 .Os .Sh NAME @@ -569,8 +569,3 @@ system and this manual page were written by It is currently not possible to watch FIFOs or AIO that reside on anything but a UFS file system. Watching a vnode is possible on UFS, NFS and MS-DOS file systems. -.Pp -The -.Fa timeout -value is limited to 24 hours; longer timeouts will be silently -reinterpreted as 24 hours. |