- Timestamp:
- Jul 12, 2010, 12:43:20 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/os/windows/vm/attachListener_windows.cpp
r2 r50 148 148 149 149 public: 150 #ifdef __EMX__ 151 void complete(jint result, bufferedStream* result_stream); 152 #else 150 153 void Win32AttachOperation::complete(jint result, bufferedStream* result_stream); 154 #endif 151 155 }; 152 156 … … 154 158 // preallocate the required number of operations 155 159 int Win32AttachListener::init() { 156 _mutex = (void*)::CreateMutex(NULL, FALSE, NULL);160 _mutex = ::CreateMutex(NULL, FALSE, NULL); 157 161 guarantee(_mutex != (HANDLE)NULL, "mutex creation failed"); 158 162
Note:
See TracChangeset
for help on using the changeset viewer.