mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-27 02:44:18 +00:00
1186192ed1
Summary: Replace include/leveldb with include/rocksdb. Test Plan: make clean; make check make clean; make release Differential Revision: https://reviews.facebook.net/D12489
13 lines
159 B
C++
13 lines
159 B
C++
#include "rocksdb/perf_context.h"
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
void PerfContext::Reset() {
|
|
user_key_comparison_count = 0;
|
|
}
|
|
|
|
__thread PerfContext perf_context;
|
|
|
|
}
|