- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:
退出状态到底是如何在 pthread_exit 和 pthread_join 之间传递的?
int pthread_join(pthread_t thread, void **retval);
If retval is not NULL, then pthread_join() copies the exit status of the target thread (i.e., the value that the target thread supplied to pthread_exit(3)) into the location pointed to by *retval. If the target thread was canceled, then PTHREAD_CANCELED is placed in *retval.
我认为手册页中的措辞不正确。
应该是“如果 retval 不为 NULL,则 pthread_join() 复制保存目标线程退出状态的变量的地址(即目标线程提供给 pthread_exit(3)) 进入 retval 指向的位置。”
我编写了这段代码来显示这一点,请参阅代码注释:
#include<stdio.h>
#include<stdlib.h>
#include<pthread.h>
void * function(void*);
int main()
{
pthread_t thread;
int arg = 991;
int * status; // notice I did not intialize status, status is *retval
pthread_create(&thread, NULL, function, (void*)(&arg));
pthread_join(thread, (void **)(&status));//passing address of status,&status is retval
//(2) this address is same as printed in (1)
printf("The address of returned status is %p,", status);
printf("The returned status is %d\n", *status);
}
void * function(void * arg)
{
int *p;
p = (int*)arg;
printf("I am in thread.\n");
//(1) printing the address of variable holding the exit status of thread, see (2)
printf("The arg address is %p %p\n", p, arg);
pthread_exit(arg);
}
示例o/p:
我在线程中。
arg地址是0xbfa64878 0xbfa64878
返回状态地址为0xbfa64878,返回状态为991***
最佳答案
您的代码与手册页不矛盾。
If retval is not NULL, then pthread_join() copies the exit status of the target thread (i.e., the value that the target thread supplied to pthread_exit(3)) into the location pointed to by *retval.
您使用 retval=&status
调用 pthread_join
,因此它不为 NULL。
您调用了pthread_exit(0xbfa64878)
,因此目标线程的退出状态为0xbfa64878
,并且该状态被复制到*retval
中,即status = 0xbfa64878
,这是您打印出来的内容。
我认为您将标签与“返回状态的地址”和“arg 地址”等标签混淆了......您为 pthreads 未暗示的值赋予了标签。手册页所说的是,*retval
设置为传递给 pthread_exit
的值,这就是您的测试显示的内容。
在您提议的更改中:
If retval is not NULL, then pthread_join() copies the address of the variable holding the exit status of the target thread (i.e., the value that the target thread supplied to pthread_exit(3)) into the location pointed to by retval.
什么是“保存目标线程退出状态的变量”? Pthreads 没有定义这样的东西。目标线程的退出状态是传递给pthread_exit
的值,而不是其他变量的值。
关于c - 退出状态如何在 pthread_exit 和 pthread_join 之间传递?手册页中是否需要更正?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16629645/
海湾合作委员会 4.6.0 c89 我只是在尝试使用 pthread_exit 和 pthread_join。 我在 pthread_exit 中唯一注意到的是它在 main 返回之前没有显示打印消息
基本上,我试图理解 pthread_exit 的真正目的。 如您所见,我尝试过多个 pthread_exit 代码。 以下是我观察到的结果: - Exit 1: 42 - Exit 2: 42 - E
下面的代码简单地创建了两个线程并尝试获取它们的返回值。 我已经在 32 位 glibc-2.15 系统上编译并运行它并且一切正常(输出:r1: 1, r2: 2)。然而,当我在 64 位 glibc-
当我在初始线程中使用 pthread_exit() 时,初始线程切换到终止状态。但是我不明白这个过程。 能否存在初始线程处于终止状态的正在运行的进程? 最佳答案 在 pthreads 中,只要任何线程
我有一个结构 typedef struct something_t { int a; int b; } VALUES; 在我的线程函数中我这样做 VALUES values; valu
我有一个多线程程序,线程工作可能需要相对较长的时间。 如果我想停止程序的执行,我有一个原子开关,我将它从 0 更改为 1,这会向线程发出它应该退出的信号。这目前在 while 循环中进行检查。 然而,
我无法终止线程,即使在我关闭终端后它仍继续发送内容... void *RTPfun(void * client_addr); int main(int argc, char *argv[]) {
我正在尝试使用此示例代码找出 pthread_exit 的用法: void* PrintVar(void* arg) { int * a = (int *) arg; // we can ac
我创建了 2 个没有任何 pthread_exit() 的线程,并添加了 2 个 pthread_join() 有什么问题吗?是否可以? 最佳答案 您不需要调用 pthread_exit。线程函数可以
这让我很惊讶。 static int ret = 50; void * thread_func(void *arg) { pthread_exit(&ret); } int main(void
假设我创建了一个线程,在某个时候调用函数 foo()。如果我从 foo 中调用 pthread_exit(),结果会终止吗调用 foo 的线程? 谢谢,尼克斯 最佳答案 当然。否则 pthread_e
pthread_exit 在 return 0; 之前放置在 main() 中时确实会阻止线程在完成分配的任务之前退出。 我希望详细了解原因。 我在线程应该处理的函数中放置了一个 while 循环。w
(这个问题可能与 pthread_exit in signal handler causes segmentation fault 有点相关)我正在编写一个防止线程锁的库,其中始终有一个检查线程在执行
我有一个可连接的 pthread runner 函数,定义如下: void *sumOfProducts(void *param) { ... pthread_exit(0); } 这个线程应该加入主
我想从函数1创建一个线程来执行函数2。要获取函数2到函数1的完成状态,我需要做什么?函数2中是否强制pthread_exit将状态变量返回给函数1? 函数 2 的返回类型也应该是 void* 吗?那么
我有一个关于在大约 64Mb RAM 的嵌入式系统中进行 C 并发编程的问题。特别是,我想减少线程使用的默认内存,所以我定义了: pthread_attr_t attr_test; size_t st
我需要创建一个线程池,它可以工作,但是在函数 pthread_create 调用的函数 do_work 中,我在调用 pthread_exit() 时出现空闲(内存泄漏)问题 *在函数创建线程池中我只
根据 this “但是,如果线程调用 pthread_exit,C++ 不保证析构函数是调用线程堆栈上的所有自动变量。一个聪明的方法来恢复这个功能是在线程函数的顶层调用 pthread_exit抛出一
几天来我一直在处理线程池中的问题。我尝试了各种不同的方法,但似乎无法解决问题。我制作了一个重现该问题的简单版本。 代码: #include #include #include #include
我尝试创建 3 个线程来做事情并重复 2 次,我预计所有线程都会使用 pthread_exit(NULL) 退出,但似乎输出只显示一次,也许线程只创建了一次......? 我对 pthread_exi
我是一名优秀的程序员,十分优秀!