1 #pragma once
2 
3 #include <cstddef>
4 
5 namespace phosphor
6 {
7 namespace state
8 {
9 namespace manager
10 {
11 
12 /** @brief Determine if host is running
13  *
14  * @return True if host running, False otherwise
15  */
16 bool isHostRunning(size_t hostId = 0);
17 
18 } // namespace manager
19 } // namespace state
20 } // namespace phosphor
21