summaryrefslogtreecommitdiff
path: root/daemons/gptp/common/common_port.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'daemons/gptp/common/common_port.cpp')
-rw-r--r--daemons/gptp/common/common_port.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/daemons/gptp/common/common_port.cpp b/daemons/gptp/common/common_port.cpp
index 659d0d6a..3f2483e3 100644
--- a/daemons/gptp/common/common_port.cpp
+++ b/daemons/gptp/common/common_port.cpp
@@ -53,8 +53,10 @@ CommonPort::CommonPort( PortInit_t *portInit ) :
one_way_delay = ONE_WAY_DELAY_DEFAULT;
neighbor_prop_delay_thresh = portInit->neighborPropDelayThreshold;
net_label = portInit->net_label;
- link_thread = thread_factory->createThread();
- listening_thread = thread_factory->createThread();
+#ifndef RPI
+ link_thread = thread_factory->create();
+#endif
+ listening_thread = thread_factory->create();
sync_receipt_thresh = portInit->syncReceiptThreshold;
wrongSeqIDCounter = 0;
_peer_rate_offset = 1.0;
@@ -80,8 +82,6 @@ CommonPort::CommonPort( PortInit_t *portInit ) :
CommonPort::~CommonPort()
{
- delete link_thread;
- delete listening_thread;
delete syncReceiptTimerLock;
delete syncIntervalTimerLock;
delete announceIntervalTimerLock;