Added Thread:isRunning

This commit is contained in:
Alex Szpakowski
2013-07-16 00:18:04 -03:00
parent 719e9253da
commit 8ac288876d
10 changed files with 42 additions and 11 deletions
+5
View File
@@ -93,5 +93,10 @@ void Threadable::wait()
owner->wait();
}
bool Threadable::isRunning() const
{
return owner->isRunning();
}
} // thread
} // love