aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-08-28 18:26:35 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-08-29 20:02:07 +0200
commit61d85071405b99c3734606eed31ea8f615c0c77a (patch)
tree6dfa3d0372bc7cb4751da7a70d2fd674a39ca315 /src/util.cpp
parent74d36d44f2584056e2fb7c0b82dc0507e2f0c5e1 (diff)
downloadbitcoin-61d85071405b99c3734606eed31ea8f615c0c77a.tar.xz
implement CreateThread with boost::thread
I'm not sure why this wasn't done before. - Removes typedef of pthread_t on Windows, which fixes a native compile issue on mingw.
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 461f42d177..ec24ee4032 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1299,3 +1299,15 @@ void RenameThread(const char* name)
(void)name;
#endif
}
+
+bool CreateThread(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;
+}