|
|
|
@ -430,6 +430,7 @@ bool Core::Init()
|
|
|
|
|
// create mutex for syncing with interactive tasks
|
|
|
|
|
StackMutex = new mutex();
|
|
|
|
|
AccessMutex = new mutex();
|
|
|
|
|
misc_data_mutex=new mutex();
|
|
|
|
|
core_cond = new Core::Cond();
|
|
|
|
|
// create plugin manager
|
|
|
|
|
plug_mgr = new PluginManager(this);
|
|
|
|
@ -442,7 +443,6 @@ bool Core::Init()
|
|
|
|
|
HotkeyMutex = new mutex();
|
|
|
|
|
HotkeyCond = new condition_variable();
|
|
|
|
|
thread * HK = new thread(fHKthread, (void *) temp);
|
|
|
|
|
misc_data_mutex=new mutex();
|
|
|
|
|
started = true;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|