gpt4 book ai didi

c++ - pthread_cond_timedwait() 用于取消冗长任务

转载 作者:IT王子 更新时间:2023-10-29 01:15:02 26 4
gpt4 key购买 nike

我有这样一种情况,如果一个线程需要太多时间才能完成,我想取消它。为此,我使用第二个线程等待第一个线程完成,但不会超过几秒。 pthread_cond_timedwait() 函数似乎非常适合我的使用场景,但它的行为似乎并不像我预期的那样。更具体地说,即使 pthread_cond_timedwait() 函数返回 ETIMEDOUT,它也只是在它应该取消的线程完成后才这样做,这违背了整个目的。

这是我的测试代码:

    #include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <iostream>
#include <cstring>

#define WAIT_INTERVAL 5
#define THREAD_SLEEP 10

pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t condition = PTHREAD_COND_INITIALIZER;

pthread_t t1;
pthread_t t2;

void* f1(void*);
void* f2(void*);

int main()
{
pthread_create(&t1, NULL, &f1, NULL);
pthread_create(&t2, NULL, &f2, NULL);

pthread_join(t1, NULL);
pthread_join(t2, NULL);

std::cout << "Thread(s) successfully finished" << std::endl << std::flush;

exit(EXIT_SUCCESS);
}

void* f1(void*)
{
pthread_mutex_lock(&mutex);
timespec ts = {0};
clock_gettime(CLOCK_REALTIME, &ts);
ts.tv_sec += WAIT_INTERVAL;
std::cout << __FUNCTION__ << ": Waiting for at most " << WAIT_INTERVAL << " seconds starting now" << std::endl << std::flush;
int waitResult = pthread_cond_timedwait(&condition, &mutex, &ts);
if (waitResult == ETIMEDOUT)
{
std::cout << __FUNCTION__ << ": Timed out" << std::endl << std::flush;
int cancelResult = pthread_cancel(t2);
if (cancelResult)
{
std::cout << __FUNCTION__ << ": Could not cancel T2 : " << strerror(cancelResult) << std::endl << std::flush;
}
else
{
std::cout << __FUNCTION__ << ": Cancelled T2" << std::endl << std::flush;
}
}
std::cout << __FUNCTION__ << ": Finished waiting with code " << waitResult << std::endl << std::flush;
pthread_mutex_unlock(&mutex);
}

void* f2(void*)
{
pthread_mutex_lock(&mutex);
std::cout << __FUNCTION__ << ": Started simulating lengthy operation for " << THREAD_SLEEP << " seconds" << std::endl << std::flush;
sleep(THREAD_SLEEP);
std::cout << __FUNCTION__ << ": Finished simulation, signaling the condition variable" << std::endl << std::flush;
pthread_cond_signal(&condition);
pthread_mutex_unlock(&mutex);
}

我从上面的代码得到的输出是:

    f1: Waiting for at most 5 seconds starting now
f2: Started simulating lengthy operation for 10 seconds
f2: Finished simulation, signaling the condition variable
f1: Timed out
f1: Could not cancel T2 : No such process
f1: Finished waiting with code 110
Thread(s) successfully finished

鉴于这是我第一次使用 POSIX 线程,我想我遗漏了一些可能非常明显的东西。

我已经阅读了大量关于此的教程、文章和答案,但没有一个涉及我的用例,也没有一个提供任何提示。

请注意,为简洁起见,我删除了一些处理 pthread_cond_timedwait 手册中提到的谓词的代码,因为这不会改变任何行为。

我在 CentOS 6.5 机器上使用 POSIX 线程。我的开发测试环境:2.6.32-431.5.1.el6.centos.plus.x86_64 #1 SMP x86_64 x86_64 x86_64 GNU/Linuxg++ (GCC) 4.4.7 20120313 (红帽 4.4.7-4)

编译命令:g++ -o executable_binary -pthread -lrt source_code.cpp

最佳答案

编辑:我首先建议不要使用 pthread_cond_timedwait,但我认为在这种情况下没关系,因此第一个线程不会等待超过需要的时间,尽管我不会检查返回值,而是检查“完成”标志,它由第二个线程设置并受互斥锁保护。

您的示例中的问题是互斥体被第一个线程占用,互斥体由 pthread_cond_timedwait() 调用释放。然后它被第二个线程占用,从而阻塞第一个线程直到第二个线程最后释放互斥体。

关于c++ - pthread_cond_timedwait() 用于取消冗长任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22666883/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com