hotspot/src/os/posix/vm/os_posix.cpp
changeset 38263 a7488329ad27
parent 38254 05e46b580b4e
child 40010 e32d5e545789
equal deleted inserted replaced
38262:8e814475a28a 38263:a7488329ad27
   325 
   325 
   326 FILE* os::open(int fd, const char* mode) {
   326 FILE* os::open(int fd, const char* mode) {
   327   return ::fdopen(fd, mode);
   327   return ::fdopen(fd, mode);
   328 }
   328 }
   329 
   329 
       
   330 void os::flockfile(FILE* fp) {
       
   331   ::flockfile(fp);
       
   332 }
       
   333 
       
   334 void os::funlockfile(FILE* fp) {
       
   335   ::funlockfile(fp);
       
   336 }
       
   337 
   330 // Builds a platform dependent Agent_OnLoad_<lib_name> function name
   338 // Builds a platform dependent Agent_OnLoad_<lib_name> function name
   331 // which is used to find statically linked in agents.
   339 // which is used to find statically linked in agents.
   332 // Parameters:
   340 // Parameters:
   333 //            sym_name: Symbol in library we are looking for
   341 //            sym_name: Symbol in library we are looking for
   334 //            lib_name: Name of library to look in, NULL for shared libs.
   342 //            lib_name: Name of library to look in, NULL for shared libs.