repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
expr-in-syscall
/
main.cpp
blob
743b69434d5fe14faf27194c721cd4d53e7e7b0e
1
#include <chrono>
2
#include <thread>
3
4
volatile
int
release_flag
=
0
;
5
6
int
main
(
int
argc
,
char const
*
argv
[])
7
{
8
while
(!
release_flag
)
// Wait for debugger to attach
9
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
seconds
(
3
));
10
11
return
0
;
12
}