Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
github.com
/
llvm
/
llvm-project
/
libunwind
/
f51a154281bdfe746c46c07cd4fb05be97f9441d
/
.
/
test
/
unw_getcontext.pass.cpp
blob: a1f2baee12b4beea91832aea744ba062fb4b9f1e [
file
] [
log
] [
blame
]
#include
<assert.h>
#include
<libunwind.h>
int
main
(
int
,
char
**)
{
unw_context_t
context
;
int
ret
=
unw_getcontext
(&
context
);
assert
(
ret
==
UNW_ESUCCESS
);
return
0
;
}