8191663: Zero variant broken after 8189170 and 8189871
Reviewed-by: eosterlund, coleenp
This commit is contained in:
parent
b18720e411
commit
1e788379fa
src/hotspot
@ -372,7 +372,7 @@ static void current_stack_region(address *bottom, size_t *size) {
|
||||
// The initial thread has a growable stack, and the size reported
|
||||
// by pthread_attr_getstack is the maximum size it could possibly
|
||||
// be given what currently mapped. This can be huge, so we cap it.
|
||||
if (os::Linux::is_initial_thread()) {
|
||||
if (os::is_primordial_thread()) {
|
||||
stack_bytes = stack_top - stack_bottom;
|
||||
|
||||
if (stack_bytes > JavaThread::stack_size_at_create())
|
||||
|
@ -82,7 +82,7 @@ namespace AccessInternal {
|
||||
#ifdef SUPPORTS_NATIVE_CX8
|
||||
struct PossiblyLockedAccess: public IntegralConstant<bool, false> {};
|
||||
#else
|
||||
struct PossiblyLockedAccess: public IntegralConstant<bool, (sizeof(T) > 4)>::value> {};
|
||||
struct PossiblyLockedAccess: public IntegralConstant<bool, (sizeof(T) > 4)> {};
|
||||
#endif
|
||||
|
||||
template <DecoratorSet decorators, typename T>
|
||||
|
Loading…
x
Reference in New Issue
Block a user