< prev index next >

src/os/windows/vm/os_windows.cpp

Print this page
rev 10178 : imported patch 8145934

*** 4629,4638 **** --- 4629,4646 ---- } else { return FALSE; } } + 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 static int nonSeekAvailable(int fd, long *pbytes) { // This is used for available on non-seekable devices
< prev index next >