xref: /llvm-project/lldb/test/API/functionalities/gdb_remote_client/sleep.cpp (revision a40929dcd295997736caf066758dd359216443c2)
1*a40929dcSPavel Labath #include <thread>
2*a40929dcSPavel Labath 
main()3*a40929dcSPavel Labath int main() {
4*a40929dcSPavel Labath   std::this_thread::sleep_for(std::chrono::minutes(1));
5*a40929dcSPavel Labath   return 0;
6*a40929dcSPavel Labath }
7