mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
461 B
26 lines
461 B
#ifndef _SdNotify_h_
|
|
#define _SdNotify_h_
|
|
|
|
#include <string>
|
|
#include <mutex>
|
|
#include <condition_variable>
|
|
|
|
class SdNotifier
|
|
{
|
|
public:
|
|
void ready();
|
|
void stopping();
|
|
void status(const std::string &s);
|
|
|
|
void waiter(); // increases waiter count by one
|
|
void running(); // decreases waiter count by one
|
|
|
|
private:
|
|
std::mutex _lock;
|
|
std::condition_variable _cond;
|
|
unsigned int waiters = 0;
|
|
};
|
|
|
|
#endif // _SdNotify_h_
|
|
|