Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit f50718c

Browse files
committed
Remove unused MAX_CONCURRENCY variable
1 parent 7dd5954 commit f50718c

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/common/init.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ void PelotonInit::Initialize() {
3535
LOGGING_THREAD_COUNT = 1;
3636
GC_THREAD_COUNT = 1;
3737
EPOCH_THREAD_COUNT = 1;
38-
MAX_CONCURRENCY = 10;
3938

4039
// set max thread number.
4140
thread_pool.Initialize(0, std::thread::hardware_concurrency() + 3);

src/common/internal_types.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ size_t CONNECTION_THREAD_COUNT = 1;
3737
size_t LOGGING_THREAD_COUNT = 1;
3838
size_t GC_THREAD_COUNT = 1;
3939
size_t EPOCH_THREAD_COUNT = 1;
40-
size_t MAX_CONCURRENCY = 10;
4140

4241
//===--------------------------------------------------------------------===//
4342
// DatePart <--> String Utilities

src/include/common/internal_types.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,6 @@ extern size_t CONNECTION_THREAD_COUNT;
11601160
extern size_t LOGGING_THREAD_COUNT;
11611161
extern size_t GC_THREAD_COUNT;
11621162
extern size_t EPOCH_THREAD_COUNT;
1163-
extern size_t MAX_CONCURRENCY;
11641163

11651164
//===--------------------------------------------------------------------===//
11661165
// TupleMetadata

0 commit comments

Comments
 (0)