gpt4 book ai didi

c++ - pthread 在完成后泄漏内存

转载 作者:行者123 更新时间:2023-11-28 02:05:53 24 4
gpt4 key购买 nike

我知道通过调用 pthread_joinpthread_detach 将在线程完成后释放线程使用的资源,但我的情况并不那么容易。

首先我希望能够从父线程中终止子线程,所以我写了这样的东西:(动态分配的 buf 在那里显示我似乎无法找到使用 pthread_detach 因为我不知道如何等待子线程完成(所以我可以释放 buf)如果我分离它)

bool running = true;
void *foo(void *buf)
{
while (running)
{
// Do something with buf
}

return NULL;
}

int main(int argc, char **argv)
{
char *buf = new char[1024];

pthread_t tid;
pthread_create(&tid, NULL, foo, buf);

string cmd;
while (true)
{
cin >> cmd;

if (!cmd.compare("stop"))
{
running = false;
pthread_join(tid, NULL);
delete[] buf;
}
else
{
// Do something
}
}

return 0;
}

这似乎可行。但是子线程有时会在父线程想要终止它之前完成。在这种情况下,父线程被阻塞所以

  1. 如何通知父线程子线程已终止,以便父线程可以调用 pthread_join

  2. 有没有一种方法可以使用 pthread_detach 并且仍然能够等待子线程完成以便之后我可以释放 buf(虽然看起来我可以在子线程中释放 buf在这个演示中,我的实际应用是不可能的)?

最佳答案

  1. How do I inform the parent thread that the child thread has terminated so the parent thread can call pthread_join?

有各种各样的选择。以下是三个相当有希望的:

  • 您可以让子线程设置一个全局标志变量。

  • 您可以让子线程使用 pthread_kill() 向父线程发送信号。

  • 您可以设置一个管道,让子级在完成时写入,并让父级从中执行非阻塞读取以测试子级是否完成。

  1. Is there a way to use pthread_detach and still be able to wait for the child thread to finish so I can free buf afterwards (though it seems I can free buf in the child thread in this demo, it's impossible for my real application)?

没有。一旦一个线程被分离,它就永远无法加入。

您可以考虑让线程管理自己的资源。或者,如果主线程必须分配资源,那么至少考虑将管理它们的责任移交给子线程。

关于c++ - pthread 在完成后泄漏内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37556324/

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