Sign in
rust
/
rust-lang
/
llvm-project
/
ce9347ddd09ec04eb2cc0eb7c46e5001efe22af5
/
.
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
tools
/
lldb-vscode
/
attach
/
main.c
blob: a078d42203eb83f32b98069f95a33ce572b9bcbd [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<unistd.h>
int
main
(
int
argc
,
char
const
*
argv
[])
{
printf
(
"pid = %i\n"
,
getpid
());
sleep
(
5
);
return
0
;
// breakpoint 1
}