sapling/eden/fs/service/EdenCPUThreadPool.cpp
Chad Austin 5d54a799c9 Rename UnboundedQueueThreadPool to UnboundedQueueExecutor and add a ManualExecutor variant
Summary:
To improve the determinism of our C++ tests, I am planning to switch
TestMount to a ManualExecutor. This adds a ManualExecutor constructor
to UnboundedQueueExecutor.

In Rust, I'd use a trait, but a simple class with two constructors works fine.

Reviewed By: strager

Differential Revision: D8846553

fbshipit-source-id: c52752105255503d26f1e65494c32b3f62882e44
2018-08-03 13:21:59 -07:00

24 lines
666 B
C++

/*
* Copyright (c) 2017-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.
*
*/
#include "eden/fs/service/EdenCPUThreadPool.h"
#include <gflags/gflags.h>
DEFINE_int32(num_eden_threads, 12, "the number of eden CPU worker threads");
namespace facebook {
namespace eden {
EdenCPUThreadPool::EdenCPUThreadPool()
: UnboundedQueueExecutor(FLAGS_num_eden_threads, "EdenCPUThread") {}
} // namespace eden
} // namespace facebook