[*] More clean up

This commit is contained in:
Reece Wilson 2021-10-23 23:37:18 +01:00
parent 81ba305558
commit 05e3a90a7c
2 changed files with 1 additions and 3 deletions

View File

@ -38,7 +38,7 @@ namespace Aurora::Processes
}
}
void OpenerThread()
static void OpenerThread()
{
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
RunTasks();

View File

@ -32,8 +32,6 @@ namespace Aurora::Threading::Threads
OSThread::OSThread(const ThreadInfo &info) : info_(info)
{
info_.stackSize = info.stackSize;
info_.name = info.name;
name_ = info.name.value_or("Aurora Thread");
terminated_ = Primitives::EventShared(true, false);
exitOnlyOnce_ = Primitives::CriticalSectionUnique();