ZXFoundation™ 26h2
Loading...
Searching...
No Matches
core.cxxm
1/// SPDX-License-Identifier: Apache-2.0
2/// @file watchdog.cxxm
3/// @brief SMP watchdog — detects CPUs stuck without scheduler ticks.
4
5export module drivers.watchdog.core;
6
7export {
8
9namespace drivers::watchdog {
10
11 auto disarm() noexcept -> void;
12
13 auto init() noexcept -> void;
14
15 auto heartbeat_bump() noexcept -> void;
16
17} // namespace zxfoundation::sys::watchdog
18
19} // end export