- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在 while
循环仍在休眠时退出它的最简单方法是什么?是否有某种函数可以在 sleep 时检测某个值是否为真?
或者我是否在循环中设置一个小 sleep 并检查如果不再睡一会儿就退出?如果可以,我该怎么做?
std::atomic<bool> _execute;
while (_execute.load(std::memory_order_acquire))
{
//do stuff
//How to exit druing this long sleep
std::this_thread::sleep_for(std::chrono::minutes(_Delay));
}
最佳答案
Is there some kind of function that can detect if a value is true while sleeping?
不,没有这样的方法来打破std::this_thread::sleep_for()
在同一个线程中调用。线程挂起的时间或多或少在 std::chrono::duration
中指定争论。
Whats the easiest way to exit this While loop while its still sleeping?
Or do I set up a small sleep in a loop and check to exit if not sleep some more? if so how would I do that?
根本不要让它休眠(那么久)。
而不是 sleep_for()
您可以使用条件变量和 wait_for()
用于发出退出循环的信号(来自另一个线程)。
正如您在 comment 中阐明的那样,而不是使用 std::atomic<bool>
您应该重新组织一下代码(再次使用条件变量):
#include <iostream>
#include <chrono>
#include <thread>
#include <condition_variable>
#include <mutex>
const std::chrono::seconds MainDelay = std::chrono::seconds(5);
const std::chrono::seconds WorkerTimeResolution = std::chrono::seconds(2);
std::mutex cv_m;
std::condition_variable cv;
bool _execute = false;
void worker_thread() {
std::unique_lock<std::mutex> lk(cv_m);
while (cv.wait_for(lk,WorkerTimeResolution,[](){return _execute ;})) {
// do stuff as long _execute is true,
// may be with more varying timing conditions than sleep_for() ...
std::cout << "Worker thread executing ..." << std::endl;
std::this_thread::sleep_for(WorkerTimeResolution);
}
}
int main() {
std::thread t(worker_thread);
_execute = true;
cv.notify_all();
for(int i = 0; i < 3; ++i) {
// Do other stuff, may be with more varying timing conditions ...
std::this_thread::sleep_for(MainDelay);
std::cout << "Main thread executing ..." << std::endl;
}
_execute = false;
cv.notify_all();
t.join();
}
请注意,有许多可能的操作而不是 std::this_thread::sleep_for()
, 这可能在
// Do stuff ...
并导致当前线程被挂起。
关于c++ - 长时间 sleep 时退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35658000/
我有一个独立的 Thread 应用程序。这是一个等待消息的监听器,当消息到达时执行一些操作,其中我必须将消息保存在数据库中。但我遇到了问题,因为如果我运行应用程序并“手动发送消息”,一切都会正常工作,
我有以下php代码: sleep(65); $query = "UPDATE database.table SET XXXXXXX = XXXXXXX - ".$YYYYYY." WHERE
我正在开发一个业余爱好应用程序。它在主布局中使用 webview。单击 webview 内的链接会使用户保持在 webview 内。启动后一切正常,但仍在应用程序内。但是,在手机休眠一段时间后,我重新
我目前运行的应用程序需要最大堆大小为 16GB。 目前我使用以下标志来处理垃圾回收。 -XX\:+UseParNewGC, -XX\:+UseConcMarkSweepGC, -XX:CMSIniti
$ uname -a Darwin Wheelie-Cyberman 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011
在 while 循环仍在休眠时退出它的最简单方法是什么?是否有某种函数可以在 sleep 时检测某个值是否为真? 或者我是否在循环中设置一个小 sleep 并检查如果不再睡一会儿就退出?如果可以,我该
我正在 Ubunu 的 Jetty 6 上运行 Java Web 服务器,用于基于反向 ajax 的 Web。而且我在向浏览器重新发送数据的线程滞后方面遇到了严重的问题。很多时候,一些线程开始 hib
当我运行长时间操作时,我遇到来自 IIS 的请求超时。我的 ASP.NET 应用程序正在后台处理数据,但处理的记录数量很大,因此操作需要很长时间。 但是,我认为 IIS 使 session 超时。这是
我不确定从哪里开始解决这个问题,但如果我有一个 AJAX 网络应用程序向服务器发送请求并在数据库(在我的例子中是 postgresql)上运行长查询,有没有办法停止或如果仍在运行时用户刷新页面或关闭
我是一名优秀的程序员,十分优秀!