noexcept usage fixed

thread_t renamed to named_thread_t
This commit is contained in:
Nekotekina 2015-08-19 14:04:58 +03:00
parent 168cd9bb7a
commit 5e14310071
26 changed files with 82 additions and 96 deletions

View file

@ -106,14 +106,8 @@ SPUThread::~SPUThread()
{
join();
if (!vm::dealloc(offset, vm::main))
{
throw EXCEPTION("Failed to deallocate SPU local storage");
}
}
else if (joinable())
{
throw EXCEPTION("Thread not joined");
// Deallocate Local Storage
vm::dealloc_verbose_nothrow(offset, vm::main);
}
}