src/share/vm/runtime/arguments.cpp

changeset 1965
79107c3a6bd5
parent 1934
e9ff18c4ace7
child 1978
fcbb92a1ab3b
child 1982
c5f1ea9e15e8
equal deleted inserted replaced
1949:b9bc732be7c0 1965:79107c3a6bd5
1373 if (ParallelGCThreads == 0) { 1373 if (ParallelGCThreads == 0) {
1374 FLAG_SET_DEFAULT(ParallelGCThreads, 1374 FLAG_SET_DEFAULT(ParallelGCThreads,
1375 Abstract_VM_Version::parallel_worker_threads()); 1375 Abstract_VM_Version::parallel_worker_threads());
1376 } 1376 }
1377 no_shared_spaces(); 1377 no_shared_spaces();
1378
1379 // Set the maximum pause time goal to be a reasonable default.
1380 if (FLAG_IS_DEFAULT(MaxGCPauseMillis)) {
1381 FLAG_SET_DEFAULT(MaxGCPauseMillis, 200);
1382 }
1383 1378
1384 if (FLAG_IS_DEFAULT(MarkStackSize)) { 1379 if (FLAG_IS_DEFAULT(MarkStackSize)) {
1385 FLAG_SET_DEFAULT(MarkStackSize, 128 * TASKQUEUE_SIZE); 1380 FLAG_SET_DEFAULT(MarkStackSize, 128 * TASKQUEUE_SIZE);
1386 } 1381 }
1387 if (PrintGCDetails && Verbose) { 1382 if (PrintGCDetails && Verbose) {

mercurial