From: cheloha Date: Sat, 29 May 2021 01:32:49 +0000 (+0000) Subject: timeout.h: remove API documentation comment X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b766510f564fdc9aa9d99585c04b390c04848157;p=openbsd timeout.h: remove API documentation comment Details about using the timeout API can be found in the timeout.9 manpage. We don't need this comment. ok mvs@ --- diff --git a/sys/sys/timeout.h b/sys/sys/timeout.h index 7ba9ee3df27..1a4fa81b952 100644 --- a/sys/sys/timeout.h +++ b/sys/sys/timeout.h @@ -1,4 +1,4 @@ -/* $OpenBSD: timeout.h,v 1.40 2020/10/15 20:03:44 cheloha Exp $ */ +/* $OpenBSD: timeout.h,v 1.41 2021/05/29 01:32:49 cheloha Exp $ */ /* * Copyright (c) 2000-2001 Artur Grabowski * All rights reserved. @@ -27,30 +27,6 @@ #ifndef _SYS_TIMEOUT_H_ #define _SYS_TIMEOUT_H_ -/* - * Interface for handling time driven events in the kernel. - * - * The basic component of this API is the struct timeout. The user should not - * touch the internals of this structure, but it's the users responsibility - * to allocate and deallocate timeouts. - * - * The functions used to manipulate timeouts are: - * - timeout_set(timeout, function, argument) - * Initializes a timeout struct to call the function with the argument. - * A timeout only needs to be initialized once. - * - timeout_add(timeout, ticks) - * Schedule this timeout to run in "ticks" ticks (there are hz ticks in - * one second). You may not touch the timeout with timeout_set once the - * timeout is scheduled. A second call to timeout_add with an already - * scheduled timeout will cause the old timeout to be canceled and the - * new will be scheduled. - * - timeout_del(timeout) - * Remove the timeout from the timeout queue. It's legal to remove - * a timeout that has already happened. - * - * These functions may be called in interrupt context (anything below splhigh). - */ - #include struct circq {