MCPcopy Create free account
hub / github.com/Icinga/icinga2 / Exit

Method Exit

lib/base/application.cpp:111–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111void Application::Exit(int rc)
112{
113 std::cout.flush();
114 std::cerr.flush();
115
116 for (const Logger::Ptr& logger : Logger::GetLoggers()) {
117 logger->Flush();
118 }
119
120 UninitializeBase();
121 _exit(rc); // Yay, our static destructors are pretty much beyond repair at this point.
122}
123
124void Application::InitializeBase()
125{

Callers 3

FatalErrorMethod · 0.80
btnNext_ClickMethod · 0.80
btnCancel_ClickMethod · 0.80

Calls 1

FlushMethod · 0.45

Tested by

no test coverage detected