2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-11-08 21:17:16 +01:00
|
|
|
|
|
|
|
#include "base/initialize.hpp"
|
2015-03-18 13:24:31 +01:00
|
|
|
#include "base/loader.hpp"
|
2014-11-08 21:17:16 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool icinga::InitializeOnceHelper(void (*func)(), int priority)
|
2014-11-08 21:17:16 +01:00
|
|
|
{
|
2015-03-18 13:24:31 +01:00
|
|
|
Loader::AddDeferredInitializer(func, priority);
|
2014-11-08 21:17:16 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|