summaryrefslogtreecommitdiffstats
path: root/src/dbus/qdbusthreaddebug_p.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-12-29 17:14:18 -0200
committerThiago Macieira <thiago.macieira@intel.com>2015-09-15 02:08:34 +0000
commit939b7c630d3f51224eacb6596f0ea2267ca5bfe5 (patch)
tree87bbbce734686809267a439cd8a8544ad6783ac5 /src/dbus/qdbusthreaddebug_p.h
parentedaf7c30d43e82e662129f55343930f54199ec60 (diff)
Implement the blocking QtDBus call in terms of the non-blocking one
This simplifies the code a little by having a single code path. More importantly, we no longer need to call the evil function dbus_connection_send_with_reply_and_block. That function acquires a lock on the socket transport inside libdbus-1, which means all threads need to wait until the one call gets unblocked before they can continue. To do that, this commit reimplements the QDBus::Block part of QDBusConnectionPrivate::sendWithReply by reusing the existing call to sendWithReplyAsync() and then doing a blocking-wait with QDBusPendingCallPrivate::waitForFinished(). By using (Q)DBusPendingCall and the threaded connection approach (next commit), now we never block on the socket. That also means the code to call dbus_pending_call_block() is no longer necessary and the waitForFinished() function itself can be considerably simplified. As a side-effect of no longer blocking, a number of pre-existing race conditions that used to be hidden showed up. Note: this commit deadlocks without the threading (next commits). Task-number: QTBUG-43585 Change-Id: Ic5d393bfd36e48a193fcffff13b73754954a3f7d Reviewed-by: Albert Astals Cid <aacid@kde.org> Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/dbus/qdbusthreaddebug_p.h')
-rw-r--r--src/dbus/qdbusthreaddebug_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbus/qdbusthreaddebug_p.h b/src/dbus/qdbusthreaddebug_p.h
index a8e126cf73..60b6acd38d 100644
--- a/src/dbus/qdbusthreaddebug_p.h
+++ b/src/dbus/qdbusthreaddebug_p.h
@@ -1,6 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
+** Copyright (C) 2015 Intel Corporation.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the QtDBus module of the Qt Toolkit.
@@ -87,8 +88,7 @@ enum ThreadAction {
ActivateSignalAction = 27,
PendingCallBlockAction = 28,
SendMessageAction = 29,
- SendWithReplyAndBlockAction = 30,
- HuntAndEmitAction = 31,
+ HuntAndEmitAction = 30,
AddTimeoutAction = 50,
RealAddTimeoutAction = 51,