< prev index next >

src/hotspot/share/runtime/os.cpp

Print this page

        

*** 227,236 **** --- 227,243 ---- } priority = (ThreadPriority)p; return OS_OK; } + + #if !defined(LINUX) && !defined(_WINDOWS) + size_t os::committed_stack_size(address bottom, size_t size) { + return size; + } + #endif + bool os::dll_build_name(char* buffer, size_t size, const char* fname) { int n = jio_snprintf(buffer, size, "%s%s%s", JNI_LIB_PREFIX, fname, JNI_LIB_SUFFIX); return (n != -1); }
< prev index next >