summaryrefslogtreecommitdiff
path: root/zen/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/thread.h')
-rw-r--r--zen/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/thread.h b/zen/thread.h
index ae865cc8..db9cf3a3 100644
--- a/zen/thread.h
+++ b/zen/thread.h
@@ -7,7 +7,7 @@
#ifndef BOOST_THREAD_WRAP_H
#define BOOST_THREAD_WRAP_H
-//temporary solution until C++11 thread becomes fully available
+//temporary solution until C++11 thread becomes fully available (considering std::thread's non-interruptibility and std::async craziness, this may be NEVER)
#include <memory>
//fix this pathetic boost thread warning mess
bgstack15