/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/SharedMemory/interface/channel_names.h
41 строка
1 KB
Christopher Jones
Allow memory sharing between multiple ReadBuffers/WriteBuffers
09 апр 2020, 00:02
09 апр 2020, 00:02
0e9d1a6
Код
Авторство
О чём код?
#ifndef FWCore_SharedMemory_channel_names_h #define FWCore_SharedMemory_channel_names_h // -*- C++ -*- // // Package: FWCore/SharedMemory // Class : channel_names // /** Description: Shared memory names used for the ControllerChannel and WorkerChannel Usage: Internal details of ControllerChannel and WorkerChannel */ // // Original Author: Chris Jones // Created: 21/01/2020 // // system include files // user include files // forward declarations namespace edm::shared_memory { namespace channel_names { constexpr char const* const kToWorkerBufferInfo = "bufferInfoToWorker"; constexpr char const* const kFromWorkerBufferInfo = "bufferInfoFromWorker"; constexpr char const* const kMutex = "mtx"; constexpr char const* const kConditionFromMain = "cndFromMain"; constexpr char const* const kConditionToMain = "cndToMain"; constexpr char const* const kStop = "stop"; constexpr char const* const kKeepEvent = "keepEvent"; constexpr char const* const kTransitionType = "transitionType"; constexpr char const* const kTransitionID = "transitionID"; }; // namespace channel_names } // namespace edm::shared_memory #endif