thrust / dependencies /libcudacxx /libunwind /test /unw_getcontext.pass.cpp
camenduru's picture
thanks to nvidia ❤
8ae5fc5
#include <assert.h>
#include <libunwind.h>
int main() {
unw_context_t context;
int ret = unw_getcontext(&context);
assert(ret == UNW_ESUCCESS);
}