假设我有以下 C 函数
void *AllocateMemory(int numBytes)
{
//allocate "numBytes" of memory
//return the memory address
}
如果上面的函数被这么多进程访问,比如100个并行,是否有内存损坏或段错误的可能性?
注意:环境是多线程的。
假设我有以下 C 函数
void *AllocateMemory(int numBytes)
{
//allocate "numBytes" of memory
//return the memory address
}
如果上面的函数被这么多进程访问,比如100个并行,是否有内存损坏或段错误的可能性?
注意:环境是多线程的。