从多个线程调用以下附加函数。我不希望数据重写追加,因为计数器尚未增加。
除了当前使用 Append 的线程之外,这是否会暂停所有进入的线程?或者其他线程会继续运行而不附加数据吗?
互斥体是否需要“静态”或每个实例都知道暂停操作?
如果我不想打嗝,我假设我必须建立一个缓冲区来备份日志数据?
void classA::Append(int _msg)
{
static int c = 0;
QMutex mutex; //need to be static so other threads know to suspend?
//there are 10 threads creating an instantiation of classA or an object of classA
mutex.lock();
intArray[c] = _msg;
c++;
mutex.unlock();
}