Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:08

0001 #ifndef FWCore_SharedMemory_channel_names_h
0002 #define FWCore_SharedMemory_channel_names_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWCore/SharedMemory
0006 // Class  :     channel_names
0007 //
0008 /**
0009 
0010  Description: Shared memory names used for the ControllerChannel and WorkerChannel
0011 
0012  Usage:
0013       Internal details of ControllerChannel and WorkerChannel
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  21/01/2020
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 
0027 namespace edm::shared_memory {
0028   namespace channel_names {
0029     constexpr char const* const kToWorkerBufferInfo = "bufferInfoToWorker";
0030     constexpr char const* const kFromWorkerBufferInfo = "bufferInfoFromWorker";
0031     constexpr char const* const kMutex = "mtx";
0032     constexpr char const* const kConditionFromMain = "cndFromMain";
0033     constexpr char const* const kConditionToMain = "cndToMain";
0034     constexpr char const* const kStop = "stop";
0035     constexpr char const* const kKeepEvent = "keepEvent";
0036     constexpr char const* const kTransitionType = "transitionType";
0037     constexpr char const* const kTransitionID = "transitionID";
0038   };  // namespace channel_names
0039 }  // namespace edm::shared_memory
0040 
0041 #endif