|
||||
File indexing completed on 2024-04-06 12:11:56
0001 // -*- C++ -*- 0002 // 0003 // Package: FWCore/Concurrency 0004 // Class : ThreadsController 0005 // 0006 // Implementation: 0007 // [Notes on implementation] 0008 // 0009 // Original Author: Christopher Jones 0010 // Created: Fri, 28 Aug 2020 19:42:30 GMT 0011 // 0012 0013 // system include files 0014 0015 // user include files 0016 #include "FWCore/Concurrency/interface/ThreadsController.h" 0017 0018 namespace edm { 0019 std::unique_ptr<oneapi::tbb::global_control> ThreadsController::makeStackSize(size_t iStackSize) { 0020 return std::make_unique<oneapi::tbb::global_control>(oneapi::tbb::global_control::thread_stack_size, iStackSize); 0021 } 0022 0023 } // namespace edm
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |