diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-02 15:25:35 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-02 15:25:35 +0000 |
commit | d99431205bc8c179b7cd52d4934818cddb29290c (patch) | |
tree | f7327563eedf2f86ca5ac37b0487d6dfc93f2bae /cpp/src/Ice/Application.cpp | |
parent | more IcePatch work (diff) | |
download | ice-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.cpp | 11 |
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; -} |