#include "attach.h" #include #ifdef _WIN32 #include #else #include #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; }