我的函数所做的是遍历一个布尔数组,并在找到一个设置为 false 的元素时,将其设置为 true。该函数是我的内存管理器单例类中的一个方法,它返回一个指向内存的指针。我收到一个错误,我的迭代器似乎循环并最终从头开始,我相信这是因为多个线程正在调用该函数。
void* CNetworkMemoryManager::GetMemory()
{
WaitForSingleObject(hMutexCounter, INFINITE);
if(mCounter >= NetConsts::kNumMemorySlots)
{
mCounter = 0;
}
unsigned int tempCounter = mCounter;
unsigned int start = tempCounter;
while(mUsedSlots[tempCounter])
{
tempCounter++;
if(tempCounter >= NetConsts::kNumMemorySlots)
{
tempCounter = 0;
}
//looped all the way around
if(tempCounter == start)
{
assert(false);
return NULL;
}
}
//return pointer to free space and increment
mCounter = tempCounter + 1;
ReleaseMutex(hMutexCounter);
mUsedSlots[tempCounter] = true;
return mPointers[tempCounter];
}
我的错误是在循环中发出的断言。我的问题是如何修复该功能,并且该错误是由多线程引起的吗?
编辑:添加了一个互斥锁来保护 mCounter 变量。没变。错误仍然出现。