< prev index next >

src/os/posix/vm/os_posix.cpp

Print this page
rev 10661 : [mq]: 8145934

*** 315,324 **** --- 315,332 ---- FILE* os::open(int fd, const char* mode) { return ::fdopen(fd, mode); } + void os::flockfile(FILE* fp) { + ::flockfile(fp); + } + + void os::funlockfile(FILE* fp) { + ::funlockfile(fp); + } + // Builds a platform dependent Agent_OnLoad_<lib_name> function name // which is used to find statically linked in agents. // Parameters: // sym_name: Symbol in library we are looking for // lib_name: Name of library to look in, NULL for shared libs.
< prev index next >