Skip to main content

watchdog_enabled

Function watchdog_enabled 

Source
pub fn watchdog_enabled() -> Option<Duration>
Expand description

Asks the service manager for enabled watchdog.

See sd_watchdog_enabled(3) for details.

ยงExample

if let Some(duration) = sd_notify::watchdog_enabled() {
    // watchdog enabled with `duration`
} else {
    // watchdog disabled
}