gpt4 book ai didi

c - 如何检测互斥条件

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:25:23 24 4
gpt4 key购买 nike

我想知道是否可以在 Linux 下使用 POSIX 线程库实现以下逻辑。

given a mutex 
if (I can get the mutex) {
lock the mutex
call fun A
unlcok the mutex
}
else {
call fun B
}

我是 Linux 下线程编程的新手,所以只需使用伪代码来显示我要查找的代码片段的逻辑即可。

最佳答案

您正在寻找 pthread_mutex_trylock

关于c - 如何检测互斥条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5376020/

24 4 0