MCPcopy Create free account
hub / github.com/apache/tvm-ffi / BacktraceCreateErrorCallback

Function BacktraceCreateErrorCallback

src/ffi/backtrace.cc:48–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46namespace ffi {
47namespace {
48void BacktraceCreateErrorCallback(void*, const char* msg, int) {
49 std::cerr << "Could not initialize backtrace state: " << msg << std::endl;
50}
51
52backtrace_state* BacktraceCreate() {
53 return backtrace_create_state(nullptr, 1, BacktraceCreateErrorCallback, nullptr);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected