c++11 mutex destroy while busy

#include 
#include 
#include 
#include 
#include 


using std::cout;
using std::endl;
using std::thread;
using std::mutex;


mutex m;
int op;


void waitKey();
void move();



int main()
{

	thread threadKey(waitKey);
	threadKey.detach();//分离线程


	while (true){
		//thread threadMove(move);
		//threadMove.join();//移动
		move();
	}


	return 0;
}

void waitKey()
{
	int num;
	while (true){
		num = getch();
		m.lock();
		op = num;
		m.unlock();

	}
}

void move()
{
	int num = 0;


	//防止阻塞当前线程
	if (m.try_lock()){
		num = op;
		op = 0;
		m.unlock();
	}

}



环境:vs2013

直接在主线程中调用move操作op,当我关闭控制台时就会弹出错误。

将move换成线程调用,解决问题。


还不是很清楚原因。

下面是StackOverflow的解答:

http://stackoverflow.com/questions/28529018/thread-safe-stack-mutex-destroyed-while-busy



你可能感兴趣的:(C++)