< prev index next >

src/hotspot/share/memory/allocation.inline.hpp

Print this page
rev 48451 : 8195094: Fix type-O in "8159422: Very high Concurrent Mark mark stack contention"
Contributed-by: arno.zeller@sap.com
Reviewed-by: tschatzl, dholmes

@@ -161,11 +161,11 @@
   char* addr = os::reserve_memory(size, NULL, alignment, flags);
   if (addr == NULL) {
     return NULL;
   }
 
-  if (os::commit_memory(addr, size, !ExecMem, "Allocator (commit)")) {
+  if (os::commit_memory(addr, size, !ExecMem)) {
     return (E*)addr;
   } else {
     os::release_memory(addr, size);
     return NULL;
   }
< prev index next >