comparison src/os/solaris/vm/os_solaris.cpp @ 2130:34d64ad817f4

7009828: Fix for 6938627 breaks visualvm monitoring when -Djava.io.tmpdir is defined Summary: Change get_temp_directory() back to /tmp and %TEMP% like it always was and where the tools expect it to be. Reviewed-by: phh, dcubed, kamg, alanb
author coleenp
date Wed, 12 Jan 2011 13:59:18 -0800
parents 84f36150fcc3
children d70fe6ab4436 2a57c59eb548
comparison
equal deleted inserted replaced
2129:8f8dfba37802 2130:34d64ad817f4
1882 1882
1883 // DLL functions 1883 // DLL functions
1884 1884
1885 const char* os::dll_file_extension() { return ".so"; } 1885 const char* os::dll_file_extension() { return ".so"; }
1886 1886
1887 const char* os::get_temp_directory() { 1887 // This must be hard coded because it's the system's temporary
1888 const char *prop = Arguments::get_property("java.io.tmpdir"); 1888 // directory not the java application's temp directory, ala java.io.tmpdir.
1889 return prop == NULL ? "/tmp" : prop; 1889 const char* os::get_temp_directory() { return "/tmp"; }
1890 }
1891 1890
1892 static bool file_exists(const char* filename) { 1891 static bool file_exists(const char* filename) {
1893 struct stat statbuf; 1892 struct stat statbuf;
1894 if (filename == NULL || strlen(filename) == 0) { 1893 if (filename == NULL || strlen(filename) == 0) {
1895 return false; 1894 return false;