comparison src/share/vm/memory/filemap.cpp @ 14726:92aa6797d639

Backed out merge changeset: b51e29501f30 Backed out merge revision to its first parent (8f483e200405)
author Doug Simon <doug.simon@oracle.com>
date Mon, 24 Mar 2014 21:30:43 +0100
parents ff056d90e349
children
comparison
equal deleted inserted replaced
14719:0bdd0d157040 14726:92aa6797d639
76 void FileMapInfo::fail_continue(const char *msg, ...) { 76 void FileMapInfo::fail_continue(const char *msg, ...) {
77 va_list ap; 77 va_list ap;
78 va_start(ap, msg); 78 va_start(ap, msg);
79 if (RequireSharedSpaces) { 79 if (RequireSharedSpaces) {
80 fail(msg, ap); 80 fail(msg, ap);
81 } else {
82 if (PrintSharedSpaces) {
83 tty->print_cr("UseSharedSpaces: %s", msg);
84 }
85 } 81 }
86 va_end(ap); 82 va_end(ap);
87 UseSharedSpaces = false; 83 UseSharedSpaces = false;
88 close(); 84 close();
89 } 85 }