aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/main.cpp
blob: 743b69434d5fe14faf27194c721cd4d53e7e7b0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <chrono>
#include <thread>

volatile int release_flag = 0;

int main(int argc, char const *argv[])
{
    while (! release_flag) // Wait for debugger to attach
        std::this_thread::sleep_for(std::chrono::seconds(3));

    return 0;
}