Changeset 342


Ignore:
Timestamp:
Mar 9, 2012, 10:28:24 PM (13 years ago)
Author:
dmik
Message:

hotspot: Disable assertion in park code which is not valid on OS/2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/hotspot/src/os/windows/vm/os_windows.cpp

    r339 r342  
    45474547    while (_Event < 0) {
    45484548       DWORD rv = ::WaitForSingleObject (_ParkHandle, INFINITE) ;
     4549       // on OS/2, wait functions may be interrupted by Ctrl-C on thread 1
     4550#ifndef __WIN32OS2__
    45494551       assert (rv == WAIT_OBJECT_0, "WaitForSingleObject failed") ;
     4552#endif
    45504553    }
    45514554
Note: See TracChangeset for help on using the changeset viewer.