Skip to content

Commit

Permalink
Rename PlatformParker event Handle to _ParkHandle as used in Platform…
Browse files Browse the repository at this point in the history
…Evenbt
  • Loading branch information
dholmes-ora committed Jan 21, 2021
1 parent 6fc33e9 commit 7c4c57f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/hotspot/os/windows/os_windows.hpp
Expand Up @@ -192,15 +192,15 @@ class PlatformParker {
NONCOPYABLE(PlatformParker);

protected:
HANDLE _ParkerEvent;
HANDLE _ParkHandle;

public:
PlatformParker() {
_ParkerEvent = CreateEvent (NULL, true, false, NULL) ;
guarantee(_ParkerEvent != NULL, "invariant") ;
_ParkHandle = CreateEvent (NULL, true, false, NULL) ;
guarantee(_ParkHandle != NULL, "invariant") ;
}
~PlatformParker() {
CloseHandle(_ParkerEvent);
CloseHandle(_ParkHandle);
}
};

Expand Down

0 comments on commit 7c4c57f

Please sign in to comment.