Changeset 50 for trunk/openjdk/hotspot


Ignore:
Timestamp:
Jul 12, 2010, 12:43:20 AM (15 years ago)
Author:
dmik
Message:

hotspot/src: attachListener_windows: Make it compile on OS/2.

File:
1 edited

Legend:

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

    r2 r50  
    148148
    149149 public:
     150#ifdef __EMX__
     151  void complete(jint result, bufferedStream* result_stream);
     152#else
    150153  void Win32AttachOperation::complete(jint result, bufferedStream* result_stream);
     154#endif
    151155};
    152156
     
    154158// preallocate the required number of operations
    155159int Win32AttachListener::init() {
    156   _mutex = (void*)::CreateMutex(NULL, FALSE, NULL);
     160  _mutex = ::CreateMutex(NULL, FALSE, NULL);
    157161  guarantee(_mutex != (HANDLE)NULL, "mutex creation failed");
    158162
Note: See TracChangeset for help on using the changeset viewer.