< prev index next >

src/os/bsd/vm/os_bsd.cpp

Print this page

        

*** 188,211 **** julong os::physical_memory() { return Bsd::physical_memory(); } - //////////////////////////////////////////////////////////////////////////////// - // environment support - - bool os::getenv(const char* name, char* buf, int len) { - const char* val = ::getenv(name); - if (val != NULL && strlen(val) < (size_t)len) { - strcpy(buf, val); - return true; - } - if (len > 0) buf[0] = 0; // return a null string - return false; - } - - // Return true if user is running as root. bool os::have_special_privileges() { static bool init = false; static bool privileges = false; --- 188,197 ----
< prev index next >