在终止pthread之前进行预处理

时间:2018-12-28 11:14:25

标签: linux pthreads

pthread是否有办法知道终止请求已经提出,然后它决定何时以及如何终止。

例如。

void * thread_func(void *arg) {
    ...
    if (is_termination_request_raised()) {
        ...
    } else {
        ...
    }
}

0 个答案:

没有答案