rocksdb/monitoring/perf_level.cc
changyubi de34e7196f clang format files under monitoring/ (#10857)
Summary:
Ran find . -iname '*.h' -o -iname '*.cc' | xargs clang-format -i under monitoring/.

Pull Request resolved: https://github.com/facebook/rocksdb/pull/10857

Test Plan: existing CI.

Reviewed By: siying

Differential Revision: D40652600

Pulled By: cbi42

fbshipit-source-id: 2af2467c33995b093e07b7512b8c32ed4144968e
2022-10-24 20:45:54 -07:00

24 lines
620 B
C++

// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// This source code is licensed under both the GPLv2 (found in the
// COPYING file in the root directory) and Apache 2.0 License
// (found in the LICENSE.Apache file in the root directory).
//
#include <assert.h>
#include "monitoring/perf_level_imp.h"
namespace ROCKSDB_NAMESPACE {
thread_local PerfLevel perf_level = kEnableCount;
void SetPerfLevel(PerfLevel level) {
assert(level > kUninitialized);
assert(level < kOutOfBounds);
perf_level = level;
}
PerfLevel GetPerfLevel() { return perf_level; }
} // namespace ROCKSDB_NAMESPACE