Index | Thread | Search

From:
"Ted Unangst" <tedu@tedunangst.com>
Subject:
Re: kevent(2): make EVFILT_TIMER mp-safe
To:
"Vitaliy Makkoveev" <mvs@openbsd.org>
Cc:
"Visa Hankala" <visa@hankala.org>, tech@openbsd.org
Date:
Thu, 08 May 2025 13:24:24 -0400

Download raw body.

Thread
On 2025-05-08, Vitaliy Makkoveev wrote:
> -int kq_ntimeouts = 0;
> -int kq_timeoutmax = (4 * 1024);
> +int kq_ntimeouts = 0;		/* [a] */
> +int kq_timeoutmax = (4 * 1024);	/* [I] */

Unrelated to this diff, but it would be nice to make these limits per
process, like with the user event diff. (I still like the user events.)