gpt4 book ai didi

c++ - 我的函数是线程安全的和可重入的吗?

转载 作者:搜寻专家 更新时间:2023-10-31 00:33:02 26 4
gpt4 key购买 nike

我有一个由两个线程调用的函数,每个线程都有一个 vector 的本地拷贝。我的假设是,由于每个线程都有不同的 vector ,因此下面的函数是线程安全的。
下面的函数是线程安全的和可重入的吗?

int Partition(int high, int low, int pivot, std::vector<int>& arr)
{
int j = low;
for (int i = low ; i <= high ; i++)
{
if (arr[i] <= pivot)
{

swap(i , j++ , arr);

}
}
return arr.size() - j;
}

void swap(int fromIndex , int toIndex , std::vector<int> &arr)
{
arr[fromIndex] = arr[fromIndex]^arr[toIndex];
arr[toIndex] = arr[fromIndex]^arr[toIndex];
arr[fromIndex] = arr[fromIndex]^arr[toIndex];
}

最佳答案

函数本身不是线程安全的,因为可以从不同的线程向它传递相同的 vector 。

但是,如果您在这些函数之外进行同步,则可以使用非线程安全函数编写线程安全代码。 IE。如果您的调用代码注意绝不会同时将同一个 vector 传递给该函数,则调用代码 将是线程安全的。

关于重入,Wikipedia有以下要说的:

In computing, a computer program or subroutine is called reentrant if it can be interrupted in the middle of its execution and then safely called again ("re-entered") before its previous invocations complete execution. The interruption could be caused by an internal action such as a jump or call, or by an external action such as a hardware interrupt or signal. Once the reentered invocation completes, the previous invocations will resume correct execution.

我强调了该定义的最后一部分,因为很明显,非线程安全的函数可能无法正确执行,因此无法通过该定义重入。

关于c++ - 我的函数是线程安全的和可重入的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29866585/

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