blob: e14cf71a7044c0d32bbe861f4f70ee19df065c0c [file]
#include "attach.h"
#include <stdio.h>
#ifdef _WIN32
#include <process.h>
#else
#include <unistd.h>
#endif
int main(int argc, char const *argv[]) {
lldb_enable_attach();
if (argc >= 2) {
// Create the synchronization token.
FILE *f = fopen(argv[1], "wx");
if (!f)
return 1;
fputs("\n", f);
fflush(f);
fclose(f);
}
// Wait on input from stdin.
getchar();
printf("pid = %i\n", getpid());
return 0;
}