autotier
Automatic Tiering Fuse Filesystem
|
51 void sleep_until(std::chrono::steady_clock::time_point t);
Definition: config.hpp:65
Base class of TierEngine. Deals with calling config_ constructor and holds onto some members used in ...
Definition: base.hpp:37
std::mutex sleep_mt_
Useless lock to release for the condition_variable to use wait_until.
Definition: sleep.hpp:59
~TierEngineSleep(void)
Destroy the Tier Engine Sleep object.
Definition: sleep.cpp:27
TierEngine component for dealing with thread sleeping.
Definition: sleep.hpp:31
void sleep_until_woken(void)
call wait on the condition variable. Puts thread to sleep until woken by sleep_cv_....
Definition: sleep.cpp:36
TierEngineSleep(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Sleep object.
Definition: sleep.cpp:22
void sleep_until(std::chrono::steady_clock::time_point t)
call wait_until on the condition variable. Puts thread to sleep until time reaches t or woken by slee...
Definition: sleep.cpp:29