summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Application.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-02 15:25:35 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-02 15:25:35 +0000
commitd99431205bc8c179b7cd52d4934818cddb29290c (patch)
treef7327563eedf2f86ca5ac37b0487d6dfc93f2bae /cpp/src/Ice/Application.cpp
parentmore IcePatch work (diff)
downloadice-d99431205bc8c179b7cd52d4934818cddb29290c.tar.bz2
ice-d99431205bc8c179b7cd52d4934818cddb29290c.tar.xz
ice-d99431205bc8c179b7cd52d4934818cddb29290c.zip
fixes
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;
-}