void * consumer_child(void *arguments){
Range rng = *((Range *) arguments);
//prinnting with the range to easily identify each thread
printf("consumer_child[%d-%d] started\n", rng.start, rng.end );
pthread_exit(0);
}
当我打印它时,它会打印内存位置,而不是值。我需要打印这个值。
在主线程中,正确设置开始和结束值。我检查过了。
在main中我将参数设置为以下
Range *rng = malloc(sizeof(*rng));
rng->start = i * numbersPerChild;
rng->end = (numbersPerChild * (i + 1)) -1 ;
printf("Range for thread %d is %d to %d\n", i, rng->start, rng->end );
printf("test print %d\n",rng->start);
pthread_create(&tid[i], NULL, consumer_child, (void *)&rng );
范围是结构
typedef struct
{
int start;
int end;
} Range;
答案 0 :(得分:3)
您需要更改:
pthread_create(&tid[i], NULL, consumer_child, (void *)&rng );
为:
pthread_create(&tid[i], NULL, consumer_child, rng);
因为rng
已经是指针,并且你想要传递它,而不是它的地址。您不需要在C中将对象指针强制转换为void *
,除非您有一个可变参数函数,并且您尝试将其传递给另一种对象指针。