diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/Application.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp index fe9e72692ee..33803835614 100644 --- a/cpp/src/Ice/Application.cpp +++ b/cpp/src/Ice/Application.cpp @@ -16,6 +16,11 @@ using namespace Ice; const char* Application::_appName = 0; CommunicatorPtr Application::_communicator; +#ifndef _WIN32 +const int Application::signals[] = { SIGHUP, SIGINT, SIGTERM }; +sigset_t Application::signalSet; +#endif + Ice::Application::Application() { #ifndef _WIN32 |