diff options
author | Aurindam Jana <aurindam.jana@nokia.com> | 2011-08-22 13:08:58 +0200 |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2011-08-23 15:35:03 +0200 |
commit | 2b84f9f3696dde27bfcc7373ff296703c160705a (patch) | |
tree | d8bf26f1c0a8b85594e093ce669389192a7f8b4a /src/plugins/debugger/qml/qmlv8debuggerclient.cpp | |
parent | eebe6681bc8d153735627489cbdc7ebad4d46101 (diff) | |
download | qt-creator-2b84f9f3696dde27bfcc7373ff296703c160705a.tar.gz |
Synchronize the client with the debug service
The v8 engine is blocked till the client is connected to the service to ensure proper hitting of breakpoints.
Task-number: QTCREATORBUG-5412
Change-Id: Iec772cb547a31fef4cccbd4bb1116699c52d20e5
Reviewed-on: http://codereview.qt.nokia.com/3308
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlv8debuggerclient.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlv8debuggerclient.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp index 9c99a4fef3..2a6c4f5f33 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp +++ b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp @@ -192,7 +192,19 @@ void QmlV8DebuggerClient::interruptInferior() } -void QmlV8DebuggerClient::shutdownInferior() +void QmlV8DebuggerClient::connect() +{ + QByteArray request; + + JsonInputStream(request) << '{' << INITIALPARAMS ; + JsonInputStream(request) << ',' << "command" << ':' << "connect"; + + JsonInputStream(request) << '}'; + + sendMessage(packMessage(request)); +} + +void QmlV8DebuggerClient::disconnect() { QByteArray request; |