summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/thread/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/python_api/thread/main.cpp')
-rw-r--r--lldb/test/API/python_api/thread/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/thread/main.cpp b/lldb/test/API/python_api/thread/main.cpp
index dde740a1b6bf..d4b0ad2372c3 100644
--- a/lldb/test/API/python_api/thread/main.cpp
+++ b/lldb/test/API/python_api/thread/main.cpp
@@ -5,8 +5,18 @@
char my_char = 'u';
int my_int = 0;
+void
+call_me(bool should_spin) {
+ int counter = 0;
+ if (should_spin) {
+ while (1)
+ counter++; // Set a breakpoint in call_me
+ }
+}
+
int main (int argc, char const *argv[])
{
+ call_me(false);
for (int i = 0; i < 3; ++i) {
printf("my_char='%c'\n", my_char);
++my_char;