hotspot/src/os/linux/vm/os_linux.cpp
changeset 7901 ea3d83447861
parent 7458 3f956542f1fd
child 8106 19106a0203fb
child 8107 78e5bd944384
equal deleted inserted replaced
7900:4c7fc6332f7e 7901:ea3d83447861
  1608 
  1608 
  1609 // DLL functions
  1609 // DLL functions
  1610 
  1610 
  1611 const char* os::dll_file_extension() { return ".so"; }
  1611 const char* os::dll_file_extension() { return ".so"; }
  1612 
  1612 
  1613 const char* os::get_temp_directory() {
  1613 // This must be hard coded because it's the system's temporary
  1614   const char *prop = Arguments::get_property("java.io.tmpdir");
  1614 // directory not the java application's temp directory, ala java.io.tmpdir.
  1615   return prop == NULL ? "/tmp" : prop;
  1615 const char* os::get_temp_directory() { return "/tmp"; }
  1616 }
       
  1617 
  1616 
  1618 static bool file_exists(const char* filename) {
  1617 static bool file_exists(const char* filename) {
  1619   struct stat statbuf;
  1618   struct stat statbuf;
  1620   if (filename == NULL || strlen(filename) == 0) {
  1619   if (filename == NULL || strlen(filename) == 0) {
  1621     return false;
  1620     return false;