src/os_cpu/solaris_x86/vm/os_solaris_x86.cpp

Print this page

        

*** 916,920 **** --- 916,925 ---- #ifdef AMD64 assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment"); #endif } #endif + + int os::extra_bang_size_in_bytes() { + // JDK-8050147 requires the full cache line bang for x86. + return VM_Version::L1_line_size(); + }