diff options
| -rw-r--r-- | core/java/android/os/Debug.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/os/Debug.java b/core/java/android/os/Debug.java index ada5c55644e3..62d9c69565da 100644 --- a/core/java/android/os/Debug.java +++ b/core/java/android/os/Debug.java @@ -1006,12 +1006,15 @@ public final class Debug // been replaced with an implementation that will suspendAll and // send VM_START. System.out.println("Waiting for debugger first packet"); + + mWaiting = true; while (!isDebuggerConnected()) { try { Thread.sleep(100); } catch (InterruptedException ie) { } } + mWaiting = false; System.out.println("Debug.suspendAllAndSentVmStart"); VMDebug.suspendAllAndSendVmStart(); |