2016-02-09 15:12:00 -08:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2013-10-16 14:59:46 -07:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
2017-04-27 17:50:56 -07:00
|
|
|
// This source code is also licensed under the GPLv2 license found in the
|
|
|
|
// COPYING file in the root directory of this source tree.
|
2013-10-16 14:59:46 -07:00
|
|
|
//
|
2013-10-04 22:32:05 -07:00
|
|
|
#pragma once
|
2013-10-03 21:49:15 -07:00
|
|
|
namespace rocksdb {
|
2014-04-23 09:11:35 -04:00
|
|
|
namespace port {
|
2013-04-11 10:54:35 -07:00
|
|
|
|
|
|
|
// Install a signal handler to print callstack on the following signals:
|
|
|
|
// SIGILL SIGSEGV SIGBUS SIGABRT
|
|
|
|
// Currently supports linux only. No-op otherwise.
|
|
|
|
void InstallStackTraceHandler();
|
|
|
|
|
2013-12-06 17:11:09 -08:00
|
|
|
// Prints stack, skips skip_first_frames frames
|
|
|
|
void PrintStack(int first_frames_to_skip = 0);
|
|
|
|
|
2014-04-23 09:11:35 -04:00
|
|
|
} // namespace port
|
|
|
|
} // namespace rocksdb
|