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
Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
deleted-executable
/
main.cpp
blob
af00ac263cc1b2ce43645e589556d8e9cc3eb69c
1
#include <chrono>
2
#include <fstream>
3
#include <thread>
4
5
int
main
(
int
argc
,
char const
*
argv
[]) {
6
lldb_enable_attach
();
7
8
{
9
// Create file to signal that this process has started up.
10
std
::
ofstream f
;
11
f
.
open
(
argv
[
1
]);
12
}
13
14
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
seconds
(
60
));
15
}