blob: 743b69434d5fe14faf27194c721cd4d53e7e7b0e [file] [log] [blame]
Zachary Turnerd1c5b6f2015-08-25 22:25:21 +00001#include <chrono>
2#include <thread>
Pavel Labath2f474932015-06-17 23:28:55 +00003
4volatile int release_flag = 0;
5
6int main(int argc, char const *argv[])
7{
8 while (! release_flag) // Wait for debugger to attach
Zachary Turnerd1c5b6f2015-08-25 22:25:21 +00009 std::this_thread::sleep_for(std::chrono::seconds(3));
Pavel Labath2f474932015-06-17 23:28:55 +000010
11 return 0;
12}