hotspot/src/os_cpu/linux_x86/vm/linux_x86_64.s
.globl SpinPause
.align 16
.type SpinPause,@function
SpinPause:
{- -------------------------------------------
(1) pause 命令 (rep:nop) を実行してからリターンするだけ.
---------------------------------------- -}
rep
nop
movq $1, %rax
ret
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.