diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2024-08-11 00:50:39 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2024-08-11 00:50:39 +0000 |
commit | c63b3aaa8288f2361425ac2fb239ba23e47790da (patch) | |
tree | d56836b21ef86f5b1c7888eae0608154da4409c9 /share/man | |
parent | 720552c7cfe3bc21ae9e4062b103f6c9845c08fa (diff) |
timeout_add_msec and timeout_add_usec take uint64_t now.
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/timeout.9 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/timeout.9 b/share/man/man9/timeout.9 index 61dff038e47..77a7c7f49fb 100644 --- a/share/man/man9/timeout.9 +++ b/share/man/man9/timeout.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: timeout.9,v 1.58 2024/08/05 23:52:03 dlg Exp $ +.\" $OpenBSD: timeout.9,v 1.59 2024/08/11 00:50:38 dlg Exp $ .\" .\" Copyright (c) 2000 Artur Grabowski <art@openbsd.org> .\" Copyright (c) 2021, 2022 Scott Cheloha <cheloha@openbsd.org> @@ -24,7 +24,7 @@ .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: August 5 2024 $ +.Dd $Mdocdate: August 11 2024 $ .Dt TIMEOUT_SET 9 .Os .Sh NAME @@ -83,12 +83,12 @@ .Ft int .Fo timeout_add_msec .Fa "struct timeout *to" -.Fa "int msecs" +.Fa "uint64_t msecs" .Fc .Ft int .Fo timeout_add_usec .Fa "struct timeout *to" -.Fa "int usecs" +.Fa "uint64_t usecs" .Fc .Ft int .Fo timeout_add_nsec |