hotspot/src/os/windows/vm/os_windows.cpp
changeset 15236 27d5f33652c7
parent 15098 3ed1d0332785
child 15237 9dadd171eeb8
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Mon Jan 14 15:17:47 2013 +0100
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Tue Jan 22 14:27:41 2013 -0500
@@ -1874,8 +1874,22 @@
       }
       return TRUE;
       break;
+    case CTRL_LOGOFF_EVENT: {
+      // Don't terminate JVM if it is running in a non-interactive session,
+      // such as a service process.
+      USEROBJECTFLAGS flags;
+      HANDLE handle = GetProcessWindowStation();
+      if (handle != NULL &&
+          GetUserObjectInformation(handle, UOI_FLAGS, &flags,
+            sizeof( USEROBJECTFLAGS), NULL)) {
+        // If it is a non-interactive session, let next handler to deal
+        // with it.
+        if ((flags.dwFlags & WSF_VISIBLE) == 0) {
+          return FALSE;
+        }
+      }
+    }
     case CTRL_CLOSE_EVENT:
-    case CTRL_LOGOFF_EVENT:
     case CTRL_SHUTDOWN_EVENT:
       os::signal_raise(SIGTERM);
       return TRUE;