此代码示例基于Michael Burr在How can I wait for any/all pthreads to complete?中的答案。
我试图修改解决方案以依赖waitid。
文档中说linux的waitid应该接受一个__WALL标志,这个标志也应该让它在线程子线程上等待,但是我发现它有错误(EINVAL):

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
#include <errno.h>
#include <unistd.h>

static
void msleep(int ms)
{
    struct timespec waittime;

    waittime.tv_sec = (ms / 1000);
    ms = ms % 1000;
    waittime.tv_nsec = ms * 1000 * 1000;

    nanosleep( &waittime, NULL);
}

void* threadfunc( void* c)
{
    int id = (int) c;
    int i = 0;

    for (i = 0 ; i < 12; ++i) {
        printf( "thread %d, iteration %d\n", id, i);
        msleep(10);
    }

    return 0;
}


int main()
{
    int i = 4;

    for (; i; --i) {
        pthread_t* tcb = malloc( sizeof(*tcb));

        pthread_create( tcb, NULL, threadfunc, (void*) i);
    }

    msleep(40);

    int r;
    siginfo_t info;
    while(0<=(r=waitid(P_ALL, 0, &info, WEXITED|__WALL)) || errno == EINTR)
        ;
    printf("r=%d %m\n", r);

#if 0
    pthread_exit(0);
#endif

    return 0;
}

你知道为什么不起作用吗?如果它不明显,我希望得到与主线程的pthRead出口(0)相同的结果——所有线程都应该运行到完成。

最佳答案

__墙不能用于waitid()
根据我所读的,“墙”(等待所有的孩子,无论克隆或非克隆),只能与waitpid()wait3()wait4()一起使用

10-08 06:58