From 53e71135de2933ef1204bb02487d4c45a95d2e28 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Tue, 23 Apr 2013 11:36:54 +0200 Subject: changes to thread code (directly use boost::thread) - removes our NewThread() function an replaces remaining calls with boost::thread with our TraceThread template - remove ExitThread() function - fix THREAD_PRIORITY_ABOVE_NORMAL for non Windows OSes --- src/util.cpp | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/util.cpp') diff --git a/src/util.cpp b/src/util.cpp index 2f1f522a6..f4892a238 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1468,15 +1468,3 @@ void RenameThread(const char* name) (void)name; #endif } - -bool NewThread(void(*pfn)(void*), void* parg) -{ - try - { - boost::thread(pfn, parg); // thread detaches when out of scope - } catch(boost::thread_resource_error &e) { - printf("Error creating thread: %s\n", e.what()); - return false; - } - return true; -} -- cgit v1.2.3