lock(); .... mutex->relea-6ren">
gpt4 book ai didi

c - "critical"一个完整的函数

转载 作者:太空宇宙 更新时间:2023-11-04 03:52:28 27 4
gpt4 key购买 nike

我正在尝试使用 openMP,并且我有一个永远不能同时运行两次的功能。在另一个世界中,这不是问题:

int foo(void){
mutex->lock();
....
mutex->release();
}

如何在 OpenMP 中实现相同的目的?

最佳答案

使用:

#pragma omp critical (CriticalSection1)
{
// your stuff here
}

编辑

我希望这更清楚:

int foo(void){
//mutex->lock();
#pragma omp critical (CriticalSection_foo)
{
....
}
//mutex->release();
}

编辑 2

根据评论者的建议,我扩展了示例以包括命名的关键部分。圆括号是必需的,请参阅 the Intel OMP documentation with an example.

关于c - "critical"一个完整的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19682767/

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