Edit

IABSD.fr/src/sys/sys

Branch :

  • Show log

    Commit

  • Author : cheloha
    Date : 2020-07-25 00:48:03
    Hash : 97b78b05
    Message : timeout(9): remove TIMEOUT_SCHEDULED flag The TIMEOUT_SCHEDULED flag was added a few months ago to differentiate between wheel timeouts and new timeouts during softclock(). The distinction is useful when incrementing the "rescheduled" stat and the "late" stat. Now that we have an intermediate queue for new timeouts, timeout_new, we don't need the flag. The distinction between wheel timeouts and new timeouts can be made computationally. Suggested by procter@ several months ago.