summaryrefslogtreecommitdiffhomepage
path: root/tracker-hatire/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-hatire/thread.cpp')
-rwxr-xr-x[-rw-r--r--]tracker-hatire/thread.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/tracker-hatire/thread.cpp b/tracker-hatire/thread.cpp
index 26bdc14d..83b712c2 100644..100755
--- a/tracker-hatire/thread.cpp
+++ b/tracker-hatire/thread.cpp
@@ -275,16 +275,13 @@ void hatire_thread::on_serial_read()
portable::sleep(ms);
}
-void hatire_thread::prepend_unread_data(const QByteArray &data)
+void hatire_thread::prepend_unread_data_nolock(const QByteArray &data)
{
- QMutexLocker lck(&data_mtx);
data_read.prepend(data);
}
-QByteArray hatire_thread::flush_data_read()
+QByteArray hatire_thread::flush_data_read_nolock()
{
- QMutexLocker lck(&data_mtx);
-
constexpr int packet_len = 30;
if (data_read.length() < 4 * packet_len)