hotspot/src/os/windows/vm/os_windows.cpp
changeset 38263 a7488329ad27
parent 38065 025c784d9333
child 38290 6b194cfc1557
--- a/hotspot/src/os/windows/vm/os_windows.cpp	Tue May 10 03:37:36 2016 +0000
+++ b/hotspot/src/os/windows/vm/os_windows.cpp	Mon May 09 15:46:12 2016 +0200
@@ -4661,6 +4661,14 @@
   }
 }
 
+void os::flockfile(FILE* fp) {
+  _lock_file(fp);
+}
+
+void os::funlockfile(FILE* fp) {
+  _unlock_file(fp);
+}
+
 // This code is a copy of JDK's nonSeekAvailable
 // from src/windows/hpi/src/sys_api_md.c