这是传递给线程声明的结构:
typedef struct {
int rowsPerThread;
int StartingRow;
double co[WIDTH][HEIGHT][2];
uint64_t total_iters;
} thdata;
以下是我如何使用它:(注意malloc)
/* data passed to each thread */
thdata *data[threads_num];
/* create threads */
for (i=0; i<threads_num; i++)
{
data[i]=(thdata *)malloc(sizeof(thdata));
data[i]->rowsPerThread= rowsPerThread;
data[i]->StartingRow= i*rowsPerThread;
for (i=i*rowsPerThread; i<rowsPerThread; i++)
memcpy(data[i]->co[i], Coordinates[i], sizeof (Coordinates) * HEIGHT * 2);
pthread_create(&thread[i], NULL, (void *) &threaded_calc, (void *) &data[i]);
free(data[i]);
}
我认为malloc()存在问题。
它给了我分段错误。
答案 0 :(得分:2)
问题是您free
阻止了data[i]
for
,pthread
创建thread
之后,因为您无法知道data[i]
何时在thread
有效启动scheduler
之前,free
可能已被释放。
所以,你应该在线程体内调用{{1}}。