aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/Threads.cpp
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-04-25 19:33:58 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-04-25 19:33:58 +0200
commit75cb0b9dd64be0feff5cafc662b6cef76de128ce (patch)
treed209fe82bef32bedb80dd957f5042fc7eeb0d6e7 /CommonLibs/Threads.cpp
parent46324d3597f990526512c46f40a6d763fa86e7aa (diff)
Move duplicated thread_enable_cancel to CommonLibs
Diffstat (limited to 'CommonLibs/Threads.cpp')
-rw-r--r--CommonLibs/Threads.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/CommonLibs/Threads.cpp b/CommonLibs/Threads.cpp
index 2988e12..c056d69 100644
--- a/CommonLibs/Threads.cpp
+++ b/CommonLibs/Threads.cpp
@@ -122,6 +122,12 @@ void set_selfthread_name(const char *name)
}
}
+void thread_enable_cancel(bool cancel)
+{
+ cancel ? pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) :
+ pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
+}
+
void Thread::start(void *(*task)(void*), void *arg)
{
assert(mThread==((pthread_t)0));