forked from M-Labs/artiq-zynq
9 lines
153 B
C++
9 lines
153 B
C++
|
#include <assert.h>
|
||
|
#include <libunwind.h>
|
||
|
|
||
|
int main() {
|
||
|
unw_context_t context;
|
||
|
int ret = unw_getcontext(&context);
|
||
|
assert(ret == UNW_ESUCCESS);
|
||
|
}
|