aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/device/lms
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 /Transceiver52M/device/lms
parent46324d3597f990526512c46f40a6d763fa86e7aa (diff)
Move duplicated thread_enable_cancel to CommonLibs
Diffstat (limited to 'Transceiver52M/device/lms')
-rw-r--r--Transceiver52M/device/lms/LMSDevice.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Transceiver52M/device/lms/LMSDevice.cpp b/Transceiver52M/device/lms/LMSDevice.cpp
index b924fa7..0cd41d3 100644
--- a/Transceiver52M/device/lms/LMSDevice.cpp
+++ b/Transceiver52M/device/lms/LMSDevice.cpp
@@ -90,12 +90,6 @@ static void lms_log_callback(int lvl, const char *msg)
LOGLV(DLMS, lvl_map[lvl]) << msg;
}
-static void thread_enable_cancel(bool cancel)
-{
- cancel ? pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) :
- pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
-}
-
static void print_range(const char* name, lms_range_t *range)
{
LOGC(DDEV, INFO) << name << ": Min=" << range->min << " Max=" << range->max