comparison src/os/linux/vm/os_linux.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 03e1b9fce89d
children d25d4ca69222 d70fe6ab4436 b92c45f2bc75
comparison
equal deleted inserted replaced
2129:8f8dfba37802 2130:34d64ad817f4
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;