src/os/posix/vm/os_posix.cpp

Print this page

        

@@ -44,11 +44,11 @@
 #define MAX_PID INT_MAX
 #endif
 #define IS_VALID_PID(p) (p > 0 && p < MAX_PID)
 
 // Check core dump limit and report possible place where core can be found
-void os::check_or_create_dump(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize) {
+void os::check_create_dump_limit(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize) {
   int n;
   struct rlimit rlim;
   bool success;
 
   char core_path[PATH_MAX];