blob: 3229ac744025fffb2423cd181a42db04ab2214ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <absl/debugging/stacktrace.h>
namespace {
static struct TInitUnwinder {
TInitUnwinder() {
absl::SetStackUnwinder(DummyUnwinder);
}
static int DummyUnwinder(void**, int*, int, int, const void*, int*) {
return 0;
}
} init;
}
|