8185062: Set AssumeMP to true and deprecate the flag

Reviewed-by: shade, dcubed, kvn
This commit is contained in:
David Holmes 2017-10-02 18:56:30 -04:00
parent b787f1b55b
commit fd93a04684
4 changed files with 5 additions and 13 deletions

View file

@ -213,7 +213,7 @@ class os: AllStatic {
// the bootstrap routine for the stub generator needs to check
// the processor count directly and leave the bootstrap routine
// in place until called after initialization has ocurred.
return (_processor_count != 1) || AssumeMP;
return AssumeMP || (_processor_count != 1);
}
static julong available_memory();
static julong physical_memory();