Sign in
llvm
/
lldb
/
master
/
.
/
packages
/
Python
/
lldbsuite
/
test
/
commands
/
platform
/
process
/
main.cpp
blob: da43e60155ea0f9a109f24f22d62acfa728ef78c [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<chrono>
#include
<thread>
int
main
(
int
argc
,
char
const
*
argv
[])
{
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
seconds
(
30
));
return
0
;
}