teak-llvm/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c
Aleksandr Urakov c1c0fac765 [API] Extend the SBThreadPlan interface
Summary:
This patch extends the `SBThreadPlan` to allow retrieving of thread plans
for scripted steps.

Reviewers: labath, zturner, jingham

Reviewed By: jingham

Subscribers: lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D53361

llvm-svn: 345247
2018-10-25 08:27:42 +00:00

11 lines
110 B
C

#include <stdio.h>
void foo() {
printf("Set a breakpoint here.\n");
}
int main() {
foo();
return 0;
}