- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
#include <pthread.h>
#include <unistd.h>
static void *tfunc(void *data)
{
return NULL;
}
int main(int argc, char **argv)
{
pthread_t t;
pthread_create(&t, NULL, tfunc, NULL);
sleep(1);
pthread_detach(t);
return 0;
}
参见 MWE。它工作正常,但我不确定这是否是实际定义的行为。 pthread_detach
的手册页没有提及在退出的线程上调用它。
是的,我知道如何使用分离属性创建线程,但我对这种情况特别好奇。 pthread_join
提到了这种情况,我认为 pthread_detach
也能正常工作,但我还没有找到任何官方声明。
最佳答案
这段代码是完全合法的,不会调用未定义的行为:
#include <pthread.h>
#include <unistd.h>
static void *tfunc(void *data)
{
return NULL;
}
int main(int argc, char **argv)
{
pthread_t t;
pthread_create(&t, NULL, tfunc, NULL);
sleep(1);
pthread_detach(t);
return 0;
}
没有明确说明,但是 POSIX documentation for pthread_detach()
以这样的方式措辞,它必须被定义和正确地调用 pthread_detach()
在终止的线程上:
The
pthread_detach()
function shall indicate to the implementation that storage for the thread thread can be reclaimed when that thread terminates. If thread has not terminated,pthread_detach()
shall not cause it to terminate.The behavior is undefined if the value specified by the thread argument to
pthread_detach()
does not refer to a joinable thread.
首先,注意语句“如果线程尚未终止”。这意味着当线程 终止时调用 pthread_detach()
必须是安全的。
其次,请注意“如果...不引用可连接的线程,则行为未定义。”在您发布的代码中,您创建的线程显然是可连接的——您没有使用分离属性创建它,因此您可以调用 pthread_join()
来检索它的返回值。所以这不是未定义的行为。
请记住,在调用 pthread_join()
或 pthread_detach()
时,无法保证线程 A 线程 B 仍在运行。因此,任何一个调用都必须是安全的,可以从任何其他线程上的任何线程调用(一次!)。
此外,来自 POSIX 文档的基本原理部分:
RATIONALE
The
pthread_join()
orpthread_detach()
functions should eventually be called for every thread that is created so that storage associated with the thread may be reclaimed.It has been suggested that a "detach" function is not necessary; the detachstate thread creation attribute is sufficient, since a thread need never be dynamically detached. However, need arises in at least two cases:
In a cancellation handler for a
pthread_join()
it is nearly essential to have apthread_detach()
function in order to detach the thread on whichpthread_join()
was waiting. Without it, it would be necessary to have the handler do anotherpthread_join()
to attempt to detach the thread, which would both delay the cancellation processing for an unbounded period and introduce a new call topthread_join()
, which might itself need a cancellation handler. A dynamic detach is nearly essential in this case.In order to detach the "initial thread" (as may be desirable in processes that set up server threads).
同样,虽然没有明确说明,但请注意 pthread_join()
和 pthread_detach()
之间隐含的等价性。
关于为已经退出的线程调用 pthread_detach?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51882300/
一段时间以来,我一直在做这个反复出现的噩梦(阅读 - 我的应用程序中的错误)。出于某种原因,某个计时器在我停止后继续发送“Elapsed”事件,即使 在事件本身 计时器“承认”已被禁用!检查一下: /
为了找到 2 个 git 分支的共同祖先,需要做的是: git merge-base branch another_branch 好的。但是……如果两个分支都已经 merge 了怎么办?当我在这种情况
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 1年前关闭。 Improve this
我想要一个相机 View ,可以将图像捕获到本地文件或让用户从本地照片库中选择图像。我想也许有人为此编写了很好的库/代码。也许我可以利用它。已经有好的了吗?谢谢。我只是避免重新发明轮子:) 最佳答案
我从 master 分支创建了一个功能分支。之后有来自功能分支的提交 [F1]。 [F1] -- Feature Branch / [M1]-[M2
我喜欢使用 .NET 进行编程,尤其是 C# 3.0、.NET 3.5 和 WPF。但我特别喜欢的是 Mono .NET 确实与平台无关。 现在我听说了 Mono 中的 Olive 项目。我找不到某种
介绍和搜索 所以我认为我犯了一个严重的错误,我很担心。我已经分析了独立负责人的论坛,我已经接近找到答案,但场景太具体,不适用于我所在的位置。如果您找到可以回答我的问题的特定主题,请链接我。 例如:Ho
我有一个类似于下图的提交图。标记为 * 的提交表示大量提交。 A* | B--------- | | C* D* master 和 cor
我喜欢使用 .NET 进行编程,尤其是 C# 3.0、.NET 3.5 和 WPF。但我特别喜欢的是 Mono .NET 确实与平台无关。 现在我听说了 Mono 中的 Olive 项目。我找不到某种
我们最近接手了一个 .NET 项目,在查看 db 后,我们在某些列中有以下内容: 1)某些列具有诸如" & etc etc 2) 有些有 标签和其他非 html 编码的标签 这些数据
你好,当我导航到应用程序中的另一个页面时出现此错误 我不知道为什么这个错误出现 #0 _AsyncCompleter.complete (dart:async/future_impl.da
我使用以下 C 算法计算数据的 CRC32: #define CRC32_POLYNOM_REVERSED 0xEDB88320 uint32 calcCrc32(uint8* buffer, u
我试图在我的一个测试中断言模型中的字段没有改变。我知道从哲学上这是不正确的,但由于我控制了我需要知道的所有变量,所以我只想检查我的数据库条目是否没有改变。 我愿意接受一个解决方案,该解决方案可以将其转
我是 GitHub 的新手。并通过 Eclipse 使用它我们是两个人在开发一个应用程序。当我在 Git shell 中检查 git status 时,我得到以下状态。 On branch maste
简单代码: std::ifstream file("file.txt"); std::string line; while(getline(file,line)) ; //exhaust file
是的,我又找不到这个 Gradle DSL 方法:'compile()' 问题。 我检查了我有: buildscript { repositories { jcenter()
HTML: articles CSS: #main_menu { float: left; padding-top: 10px; vertical-align: m
我是一名优秀的程序员,十分优秀!