Warning, /include/absl/debugging/internal/stacktrace_unimplemented-inl.inc is written in an unsupported language. File is not indexed.
0001 #ifndef ABSL_DEBUGGING_INTERNAL_STACKTRACE_UNIMPLEMENTED_INL_H_
0002 #define ABSL_DEBUGGING_INTERNAL_STACKTRACE_UNIMPLEMENTED_INL_H_
0003
0004 template <bool IS_STACK_FRAMES, bool IS_WITH_CONTEXT>
0005 static int UnwindImpl(void** /* result */, int* /* sizes */,
0006 int /* max_depth */, int /* skip_count */,
0007 const void* /* ucp */, int *min_dropped_frames) {
0008 if (min_dropped_frames != nullptr) {
0009 *min_dropped_frames = 0;
0010 }
0011 return 0;
0012 }
0013
0014 namespace absl {
0015 ABSL_NAMESPACE_BEGIN
0016 namespace debugging_internal {
0017 bool StackTraceWorksForTest() {
0018 return false;
0019 }
0020 } // namespace debugging_internal
0021 ABSL_NAMESPACE_END
0022 } // namespace absl
0023
0024 #endif // ABSL_DEBUGGING_INTERNAL_STACKTRACE_UNIMPLEMENTED_INL_H_