]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/rocksdb/monitoring/perf_level.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / rocksdb / monitoring / perf_level.cc
index 0b704c32fc81149dca9cec5d41b94aa7aeacb2db..79c718cce764e1c6b97c194bf50b313ced040038 100644 (file)
@@ -1,20 +1,18 @@
 //  Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
-//  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.
+//  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 <sstream>
 #include "monitoring/perf_level_imp.h"
-#include "port/port.h"
 
 namespace rocksdb {
 
-#if defined(IOS_CROSS_COMPILE)
-PerfLevel perf_level = kEnableCount;
-#else
+#ifdef ROCKSDB_SUPPORT_THREAD_LOCAL
 __thread PerfLevel perf_level = kEnableCount;
+#else
+PerfLevel perf_level = kEnableCount;
 #endif
 
 void SetPerfLevel(PerfLevel level) {