]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/port/stack_trace.h
import quincy beta 17.1.0
[ceph.git] / ceph / src / rocksdb / port / stack_trace.h
CommitLineData
7c673cae 1// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
11fdf7f2
TL
2// This source code is licensed under both the GPLv2 (found in the
3// COPYING file in the root directory) and Apache 2.0 License
4// (found in the LICENSE.Apache file in the root directory).
7c673cae
FG
5//
6#pragma once
f67539c2
TL
7
8#include "rocksdb/rocksdb_namespace.h"
9
10namespace ROCKSDB_NAMESPACE {
7c673cae
FG
11namespace port {
12
13// Install a signal handler to print callstack on the following signals:
14// SIGILL SIGSEGV SIGBUS SIGABRT
15// Currently supports linux only. No-op otherwise.
16void InstallStackTraceHandler();
17
18// Prints stack, skips skip_first_frames frames
19void PrintStack(int first_frames_to_skip = 0);
20
20effc67
TL
21// Prints the given callstack
22void PrintAndFreeStack(void* callstack, int num_frames);
23
24// Save the current callstack
25void* SaveStack(int* num_frame, int first_frames_to_skip = 0);
26
7c673cae 27} // namespace port
f67539c2 28} // namespace ROCKSDB_NAMESPACE