Sha256: 314ac3c80e91de776d9c44223fa8de64e4e6bca0ff3ac02c9ce857b36266408f
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
// Copyright 2023 The gRPC Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <grpc/support/port_platform.h> #include <stddef.h> #include <memory> #include "src/core/lib/event_engine/forkable.h" #include "src/core/lib/event_engine/thread_pool/thread_pool.h" #include "src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h" #include "src/core/util/no_destruct.h" namespace grpc_event_engine { namespace experimental { namespace { grpc_core::NoDestruct<ObjectGroupForkHandler> g_thread_pool_fork_manager; class ThreadPoolForkCallbackMethods { public: static void Prefork() { g_thread_pool_fork_manager->Prefork(); } static void PostforkParent() { g_thread_pool_fork_manager->PostforkParent(); } static void PostforkChild() { g_thread_pool_fork_manager->PostforkChild(); } }; } // namespace std::shared_ptr<ThreadPool> MakeThreadPool(size_t reserve_threads) { auto thread_pool = std::make_shared<WorkStealingThreadPool>(reserve_threads); g_thread_pool_fork_manager->RegisterForkable( thread_pool, ThreadPoolForkCallbackMethods::Prefork, ThreadPoolForkCallbackMethods::PostforkParent, ThreadPoolForkCallbackMethods::PostforkChild); return thread_pool; } } // namespace experimental } // namespace grpc_event_engine
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grpc-1.68.1 | src/core/lib/event_engine/thread_pool/thread_pool_factory.cc |