22 lines
546 B
C++
22 lines
546 B
C++
#ifndef WATCHDOG_DEFINITIONS_H_
|
|
#define WATCHDOG_DEFINITIONS_H_
|
|
|
|
#include <watchdogConf.h>
|
|
|
|
namespace watchdog {
|
|
|
|
// Suspend watchdog operations temporarily
|
|
static constexpr char SUSPEND_CHAR = 's';
|
|
// Resume watchdog operations
|
|
static constexpr char RESTART_CHAR = 'b';
|
|
// Causes the watchdog to close down
|
|
static constexpr char CANCEL_CHAR = 'c';
|
|
|
|
static constexpr int TIMEOUT_MS = 5 * 1000;
|
|
const std::string FIFO_NAME = "/tmp/watchdog-pipe";
|
|
const std::string RUNNING_FILE_NAME = "/tmp/obsw-running";
|
|
|
|
}
|
|
|
|
#endif /* WATCHDOG_DEFINITIONS_H_ */
|