/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/PluginManager/src/PauseMaxMemoryPreloadSentry.cc
11 строк
424 B
Matti Kortelainen
Pause MaxMemoryPreload for edmplugincache file reading in PluginManager
31 окт 2024, 10:35
31 окт 2024, 10:35
b121ddf
Код
Авторство
О чём код?
#include "PauseMaxMemoryPreloadSentry.h" // By default do nothing, but add "hooks" that MaxMemoryPreload can // override with LD_PRELOAD void pauseMaxMemoryPreload() {} void unpauseMaxMemoryPreload() {} namespace edm { PauseMaxMemoryPreloadSentry::PauseMaxMemoryPreloadSentry() { pauseMaxMemoryPreload(); } PauseMaxMemoryPreloadSentry::~PauseMaxMemoryPreloadSentry() { unpauseMaxMemoryPreload(); } } // namespace edm