gpt4 book ai didi

c - 从C中的2个线程获取返回值

转载 作者:行者123 更新时间:2023-11-30 14:23:44 26 4
gpt4 key购买 nike

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <stdint.h>
#include <inttypes.h>

typedef struct tmp_num{
int tmp_1;
int tmp_2;
}t_num;

t_num t_nums;

void *num_mezzo_1(void *num_orig);
void *num_mezzo_2(void *num_orig);

int main(int argc, char *argv[]){

pthread_t thread1, thread2;
int tmp=0,rc1,rc2,num;

num=atoi(argv[1]);
if(num <= 3){
printf("Questo è un numero primo: %d\n", num);
exit(0);
}

if( (rc1=pthread_create( &thread1, NULL, &num_mezzo_1, (void *)&num)) ){
printf("Creazione del thread fallita: %d\n", rc1);
exit(1);
}
if( (rc2=pthread_create( &thread2, NULL, &num_mezzo_2, (void *)&num)) ){
printf("Creazione del thread fallita: %d\n", rc2);
exit(1);
}

t_nums.tmp_1 = 0;
t_nums.tmp_2 = 0;
pthread_join(thread1, (void **)(&t_nums.tmp_1));
pthread_join(thread2, (void **)(&t_nums.tmp_2));
tmp=t_nums.tmp_1+t_nums.tmp_2;
printf("%d %d %d\n", tmp, t_nums.tmp_1, t_nums.tmp_2);
if(tmp>2){
printf("Questo NON è un numero primo: %d\n", num);
}
else{
printf("Questo è un numero primo: %d\n", num);
}
exit(0);
}

void *num_mezzo_1(void *num_orig){
int cont_1;
int *n_orig=(int *)num_orig;
t_nums.tmp_1 = 0;
for(cont_1=1; cont_1<=(*n_orig/2); cont_1++){
if((*n_orig % cont_1) == 0){
(t_nums.tmp_1)++;
}
}
pthread_exit((void *)(&t_nums.tmp_1));
return NULL;
}

void *num_mezzo_2(void *num_orig){
int cont_2;
int *n_orig=(int *)num_orig;
t_nums.tmp_2 = 0;
for(cont_2=((*n_orig/2)+1); cont_2<=*n_orig; cont_2++){
if((*n_orig % cont_2) == 0){
(t_nums.tmp_2)++;
}
}
pthread_exit((void *)(&t_nums.tmp_2));
return NULL;
}

这个程序是如何工作的:我必须输入一个数字,这个程序将计算它是否是素数(我知道这是一个糟糕的算法,但我只需要学习pthread ).
问题是返回的值太大。
例如,如果我在 main 中写入“12”,则 tmp tmp_1 tmp_2 的值是 12590412 6295204 6295208.
为什么我得到这些数字?

最佳答案

问题出在您的 return 语句上:

第一:

pthread_exit((void *)(&t_nums.tmp_1));
return NULL;
}

如果你打算直接返回并死亡,则不需要调用 pthread_exit()

其次,您将返回一个地址 (&),这就是您要打印的内容。试试这个:

return ((void *)(t_nums.tmp_1)); 
}

关于c - 从C中的2个线程获取返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12586085/

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