LTS Commits

This commit is contained in:
Thulinma 2015-04-05 21:38:36 +02:00
parent f24d97b510
commit 4bdbd82f66
72 changed files with 8245 additions and 105 deletions

View file

@ -157,14 +157,14 @@ namespace tthread {
// Get thread startup information
_thread_start_info * ti = (_thread_start_info *) aArg;
try {
//try {
// Call the actual client thread function
ti->mFunction(ti->mArg);
} catch (...) {
//} catch (...) {
// Uncaught exceptions will terminate the application (default behavior
// according to C++11)
std::terminate();
}
//std::terminate();
//}
// The thread is no longer executing
if (ti->mThread) {