Sign in
llvm
/
llvm-project
/
lldb
/
42b7a85e11c8017d38566b18e9635b75adfb4cb6
/
.
/
test
/
API
/
functionalities
/
gdb_remote_client
/
sleep.cpp
blob: 3118d8f6ce9b5664b99914079dfc5bfef4e5d7db [
file
] [
log
] [
blame
]
#include
<thread>
int
main
()
{
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
minutes
(
1
));
return
0
;
}