src/os/bsd/vm/os_bsd.cpp

Print this page

        

*** 4671,4681 **** } // Get the default path to the core file // Returns the length of the string int os::get_core_path(char* buffer, size_t bufferSize) { ! int n = jio_snprintf(buffer, bufferSize, "/cores"); // Truncate if theoretical string was longer than bufferSize n = MIN2(n, (int)bufferSize); return n; --- 4671,4681 ---- } // Get the default path to the core file // Returns the length of the string int os::get_core_path(char* buffer, size_t bufferSize) { ! int n = jio_snprintf(buffer, bufferSize, "/cores/core.%d", current_process_id()); // Truncate if theoretical string was longer than bufferSize n = MIN2(n, (int)bufferSize); return n;