Module Name: src Committed By: riastradh Date: Sun May 3 04:04:32 UTC 2020
Modified Files: src/share/man/man9: condvar.9 Log Message: Update cv_timedwaitbt documentation to reflect useful reality. Previously, a negative timeout was forbidden (kassert), a zero or maybe even just a sufficiently small timeout would block forever, and we would subtract the time elapsed -- possibly longer than the timeout, leading to a negative updated timeout, which would trip the kassert the next time around if used as advertised. DERP. Now negative timeouts are still forbidden in order to detect usage mistakes, but a zero timeout fails immediately and we clamp the subtracted time to be at least zero so you can always safely call cv_timedwaitbt in a loop. (An alternative would be to fail immediately for all nonpositive timeouts, and to leave in the timespec the negative time we overshot, but it's not clear this would be useful.) To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/share/man/man9/condvar.9 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.