summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Application.cpp')
-rw-r--r--cpp/src/Ice/Application.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp
index d0480baa916..a9672c2cf4f 100644
--- a/cpp/src/Ice/Application.cpp
+++ b/cpp/src/Ice/Application.cpp
@@ -18,7 +18,6 @@ using namespace Ice;
const char* Application::_appName = 0;
CommunicatorPtr Application::_communicator;
-bool Application::_shutdown = false;
Ice::Application::Application()
{
@@ -105,8 +104,6 @@ Ice::Application::communicator()
BOOL WINAPI
Ice::interruptHandler(DWORD)
{
- Application::_shutdown = true;
-
//
// Don't use Application::communicator(), this is not signal-safe.
//
@@ -141,8 +138,6 @@ Ice::Application::defaultInterrupt()
void
Ice::interruptHandler(int)
{
- Application::_shutdown = true;
-
//
// Don't use Application::communicator(), this is not signal-safe.
//
@@ -190,9 +185,3 @@ Ice::Application::defaultInterrupt()
}
#endif
-
-bool
-Ice::Application::isShutdownFromInterrupt()
-{
- return _shutdown;
-}