解引用一个结构内的阵列正在使用ptread_create

我ThreadData结构:解引用一个结构内的阵列正在使用ptread_create

typedef struct threadData { 

pthread_t *ths;

} threadData;

其中*是部份的pthread_t阵列。

现在,我创建的动作,使用下面的函数,它创建的部份[1]

void *rootThread(threadData *d) { 

pthread_t *b = (*d).ths;

pthread_create(*(b+1),NULL,someRandomFunction,NULL);

}

但是,这似乎并没有工作,一个新的线程的线程。

我不确定我是否很好地解引用了pthread_t元素。请帮忙!

谢谢,:)。

回答:

您无法维护pthread_t以这种方式使用的索引。每次您重新输入rootThread()时,b + 1都将保持不变。您可能需要threadData中的单独索引变量,或者可以遍历列表的第二个指针。要么,要么不做一个临时变量pthread_t * b。

typedef struct threadData { 

pthread_t *ths;

int thsIdx;

} threadData;

void *rootThread(threadData *d) {

pthread_create(&d->ths[d->thsIdx++],NULL,someRandomFunction,NULL);

}

或者用自己的方式:

void *rootThread(threadData *d) { 

pthread_create(d->ths, NULL, someRandomFunction, NULL);

++d->ths; // this is nasty because you lose the pointer to the beginning of the array.

}

回答:

它看起来像(例如)你不分配。你必须这样做:

void* Thread(void* theCUstom); 

pthread_t* threadHandle = malloc(sizeof(pthread_t));

pthread_mutex_t mutex; // mutex lock

pthread_attr_t attr; // thread attributes

pthread_mutex_init(&mutex, NULL);

pthread_attr_init(&attr);

unsigned long errRes = pthread_create(threadHandle, &attr, Thread, yourCustom);

以上是 解引用一个结构内的阵列正在使用ptread_create 的全部内容, 来源链接: utcz.com/qa/257335.html

回到顶部