Skip to content

Commit a6248fc

Browse files
---
yaml --- r: 158783 b: refs/heads/snap-stage3 c: 37a823b h: refs/heads/master i: 158781: 63d888e 158779: 4e453e3 158775: 26fe893 158767: 1132aa5 158751: 690cea4 158719: f8d4f4a v: v3
1 parent 7c7343b commit a6248fc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 0b48001c28329392b26961eaf1c3ed293a352d6f
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 2f215f644f3c0d5dc02859a125c4c060736bd250
4+
refs/heads/snap-stage3: 37a823b223007da79da5c067782f6494b4771c4a
55
refs/heads/try: f58aad6dce273570fb130b4df008ef9acd5a5be2
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/etc/lldb_batchmode.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import threading
3131
import re
3232
import atexit
33+
import time
3334

3435
# Set this to True for additional output
3536
DEBUG_OUTPUT = False
@@ -175,6 +176,10 @@ def listen():
175176

176177
for line in script_file:
177178
command = line.strip()
179+
if command == "run" or command == "r" or re.match("^process\s+launch.*", command):
180+
# Before starting to run the program, let the thread sleep a bit, so all
181+
# breakpoint added events can be processed
182+
time.sleep(0.5)
178183
if command != '':
179184
execute_command(command_interpreter, command)
180185

0 commit comments

Comments
 (0)