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

int main(int argc, char const *argv[]) {
  printf("pid = %i\n", getpid());
  sleep(5);
  return 0; // breakpoint 1
}
OpenPOWER on IntegriCloud