gpt4 book ai didi

c++ - 将 sigwait 与 std::thread 和管道一起使用

转载 作者:太空狗 更新时间:2023-10-29 21:13:44 42 4
gpt4 key购买 nike

考虑一个由多个工作线程组成的并行程序。这些线程在某些文件描述符上有一个 poll 循环。该程序应该一直运行到按下 ctrl-c/进程接收到 SIGINT。该程序不应在不必要的情况下唤醒。

我设计了以下 sigwaitstd::threadpipepthread_sigmask 的组合。请注意,在实际应用程序中,有更多的文件描述符,因此我没有使用原子来关闭线程。

#include <thread>
#include <iostream>
#include <cstdlib>
#include <csignal>

extern "C" {
#include <unistd.h>
#include <fcntl.h>
#include <pthread.h>
#include <poll.h>
}

int fds[2];

void thread_run() {
struct pollfd pfd = {fds[0], POLLIN, 0};
int ret = poll(&pfd, 1, -1);
if (ret != 1) std::terminate();
if (!pfd.revents & POLLIN) std::abort();
}

int main()
{
int ret = pipe(fds);
if (ret) std::abort();

sigset_t ss;
sigemptyset(&ss);
sigaddset(&ss, SIGINT);

ret = pthread_sigmask(SIG_BLOCK, &ss, NULL);
if (ret) std::abort();

std::thread t(thread_run);

int sig;
ret = sigwait(&ss, &sig);
if (ret) std::abort();

char b = 0;
ret = write(fds[1], &b, 1);
if (ret != 1) std::abort();

t.join();

close(fds[0]);
close(fds[1]);
}

该程序似乎可以正常运行。

  1. 这种方法是否合规,或者我是否忽略了任何注意事项?
  2. 是否有任何特定的错误情况可能会在常规操作中发生并且可以更优雅地处理?
  3. 如果我交换 std::thread-creation 和 pthread_sigmask,程序是否仍然正确?

最佳答案

  1. 这是一种标准的推荐方法,效果很好。请参阅 pthread_sigmask 中的示例部分.
  2. 无法发现任何东西。
  3. 这是不正确的。大多数信号都是特定于进程的,这意味着它们会被传送到进程中不会阻塞该信号的任何线程。因此,除了处理该信号的线程外,该信号必须在所有线程中被阻塞。

您可能喜欢在意外情况下使用 std::abort 调用。 std::terminate 在异常处理失败时由 C++ 运行时调用

关于c++ - 将 sigwait 与 std::thread 和管道一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43141388/

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