hotspot/src/share/vm/utilities/debug.cpp
changeset 29697 92501504191b
parent 29204 b0f8f3c6ceec
child 30764 fec48bf5a827
equal deleted inserted replaced
29696:01571dfab5be 29697:92501504191b
   271            name[shared_space], flag[shared_space], name[shared_space]);
   271            name[shared_space], flag[shared_space], name[shared_space]);
   272    exit(2);
   272    exit(2);
   273 }
   273 }
   274 
   274 
   275 void report_insufficient_metaspace(size_t required_size) {
   275 void report_insufficient_metaspace(size_t required_size) {
   276   warning("\nThe MaxMetaspaceSize of " UINTX_FORMAT " bytes is not large enough.\n"
   276   warning("\nThe MaxMetaspaceSize of " SIZE_FORMAT " bytes is not large enough.\n"
   277           "Either don't specify the -XX:MaxMetaspaceSize=<size>\n"
   277           "Either don't specify the -XX:MaxMetaspaceSize=<size>\n"
   278           "or increase the size to at least " SIZE_FORMAT ".\n",
   278           "or increase the size to at least " SIZE_FORMAT ".\n",
   279           MaxMetaspaceSize, required_size);
   279           MaxMetaspaceSize, required_size);
   280   exit(2);
   280   exit(2);
   281 }
   281 }