mirror of
https://github.com/monero-project/monero.git
synced 2025-08-05 01:54:16 -04:00
Use boost::thread instead of std::thread
and all other associated IPC
This commit is contained in:
parent
b96147030c
commit
b937a2c915
27 changed files with 107 additions and 103 deletions
|
@ -99,8 +99,8 @@ namespace {
|
|||
// to allow the user to read any output.
|
||||
void pause_to_display_admin_window_messages()
|
||||
{
|
||||
std::chrono::milliseconds how_long{1500};
|
||||
std::this_thread::sleep_for(how_long);
|
||||
boost::chrono::milliseconds how_long{1500};
|
||||
boost::this_thread::sleep_for(how_long);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ namespace windows {
|
|||
private:
|
||||
SERVICE_STATUS_HANDLE m_status_handle{nullptr};
|
||||
SERVICE_STATUS m_status{};
|
||||
std::mutex m_lock{};
|
||||
boost::mutex m_lock{};
|
||||
std::string m_name;
|
||||
T_handler m_handler;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue