Revision 6798d1f3beb8fa644391079aced24b1ecda39dd4 authored by Maysam Yabandeh on 02 May 2017, 20:39:09 UTC, committed by Facebook Github Bot on 02 May 2017, 20:46:39 UTC
Summary:
This reverts commit 89833577a80ad7a2cbf6b99c5957f572b3548152.
Closes https://github.com/facebook/rocksdb/pull/2240

Differential Revision: D4986982

Pulled By: maysamyabandeh

fbshipit-source-id: 56c4c07b7b5b7c6fe122d5c2f2199d221c8510c0
1 parent 8983357
Raw File
perf_level_imp.h
//  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 also licensed under the GPLv2 license found in the
//  COPYING file in the root directory of this source tree.
//
#pragma once
#include "rocksdb/perf_level.h"
#include "port/port.h"

namespace rocksdb {

#if defined(IOS_CROSS_COMPILE)
extern PerfLevel perf_level;
#else
extern __thread PerfLevel perf_level;
#endif

}  // namespace rocksdb
back to top