summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/main.c
blob: 4f50f7546155490cce41e30823326dc97a346d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <unistd.h>

int main(int argc, char const *argv[])
{
    lldb_enable_attach();

    printf("pid = %i\n", getpid());
    sleep(10);
    return 0; // breakpoint 1
}
OpenPOWER on IntegriCloud