gpt4 book ai didi

c - C 中的 Pthread 屏障是否可重用?

转载 作者:太空狗 更新时间:2023-10-29 14:57:10 25 4
gpt4 key购买 nike

所以我知道您可以在 C 中创建屏障来控制线程程序的流程。您可以初始化屏障,让您的线程使用它,然后销毁它。但是,我不确定是否可以重复使用同一个屏障(比如它是否在循环中)。或者您必须为第二个等待点使用新的障碍?例如,下面的代码是否正确(重复使用相同的屏障)?

#include <pthread.h>
pthread_barrier_t barrier;

void* thread_func (void *not_used) {
//some code
pthread_barrier_wait(&barrier);
//some more code
pthread_barrier_wait(&barrier);
//even more code
}

int main() {
pthread_barrier_init (&barrier, NULL, 2);
pthread_t tid[2];
pthread_create (&tid[0], NULL, thread_func, NULL);
pthread_create (&tid[1], NULL, thread_func, NULL);
pthread_join(tid[0], NULL);
pthread_join(tid[1], NULL);
pthread_barrier_destroy(&barrier);
}

最佳答案

是的,它们是可重复使用的。 man page says :

When the required number of threads have called pthread_barrier_wait()...the barrier shall be reset to the state it had as a result of the most recent pthread_barrier_init() function that referenced it.

关于c - C 中的 Pthread 屏障是否可重用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36318516/

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