OpenBSD cvs log

created 2022-11-29T02:49:25Z
begin 2022-11-11T17:23:09Z
end 2022-11-11T18:09:58Z
path src/sys
commits 1

date 2022-11-11T18:09:58Z
author cheloha
files src/sys/kern/kern_fork.c log diff annotate
src/sys/kern/kern_timeout.c log diff annotate
src/sys/netinet/ip_ipsp.c log diff annotate
src/sys/sys/timeout.h log diff annotate
message timeout(9): remove timeout_set_kclock(), TIMEOUT_INITIALIZER_KCLOCK()

We have too many timeout(9) initialization functions and macros.
Let's slim it down and combine some interfaces.

- Remove timeout_set_kclock(), TIMEOUT_INITIALIZER_KCLOCK().
- Expand timeout_set_flags(), TIMEOUT_INITIALIZER_FLAGS() to accept
an additional "kclock" parameter.
- Reimplement timeout_set(), timeout_set_proc() with timeout_set_flags().
- Reimplement TIMEOUT_INITIALIZER() with TIMEOUT_INITIALIZER_FLAGS().
- Update the sole timeout_set_flags() user to pass a kclock parameter.
- Update the sole timeout_set_kclock() user to call timeout_set_flags().
- Update the sole TIMEOUT_INITIALIZER_FLAGS() user to provide a kclock
parameter.

The timeout(9) code is now a bit out of sync with the manpage. This
will be corrected in a subsequent commit.

ok kn@