Files
clang-p2996/lldb/test/API/functionalities/launch_stop_at_entry/main.c
Jim Ingham e655769c4a Fix a bug in Launch when using an async debugger & remote platform.
We weren't setting the listener back to the unhijacked one in this
case, so that a continue after the stop fails.  It thinks the process
is still running.  Also add tests for this behavior.

Differential Revision: https://reviews.llvm.org/D112747
2021-10-28 17:02:43 -07:00

6 lines
141 B
C

int main(int argc, char **argv) {
/* We just want to make sure this ran, so
it doesn't actually need to do anything. */
return 0;
}