summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qwindowspipereader_p.h
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-04-16 13:46:45 +0200
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-04-16 15:45:53 +0000
commitbb8f62148052e1208b4fe00a3fc6f25fa74432ac (patch)
tree4f5e0cff186ae8c15616c42c65ab97afd860f357 /src/corelib/io/qwindowspipereader_p.h
parent5fc52ba6e2a5425ea8edcef8aad80d9d20f47f9c (diff)
remove emitReadyReadTimer from QWindowsPipeReader
The zero timeout singleshot timer emitReadyReadTimer was used to emit the readyRead signal via the event loop in case of a synchronous read. In that particular case, ReadFile would return successfully, and the notified slot would not be called. Now, that we use an I/O completion port, the notified slot is always called, even in the synchronous case. The emitReadyReadTimer is not needed anymore. This is also supported by the fact that the timer is immediately stopped in notified() after it was started in completeAsyncRead(). Change-Id: I93bcde5f067bf89a1d49005a3fddda4c8c8c95fc Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'src/corelib/io/qwindowspipereader_p.h')
-rw-r--r--src/corelib/io/qwindowspipereader_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/io/qwindowspipereader_p.h b/src/corelib/io/qwindowspipereader_p.h
index ecc6974efa..6eead60fd5 100644
--- a/src/corelib/io/qwindowspipereader_p.h
+++ b/src/corelib/io/qwindowspipereader_p.h
@@ -47,7 +47,6 @@
#include <qbytearray.h>
#include <qobject.h>
-#include <qtimer.h>
#include <private/qringbuffer_p.h>
#include <qt_windows.h>
@@ -100,7 +99,6 @@ private:
QRingBuffer readBuffer;
int actualReadBufferSize;
bool readSequenceStarted;
- QTimer *emitReadyReadTimer;
bool pipeBroken;
bool readyReadEmitted;
};