Compiler Intrinsics for "__asm pause"

  • Thread starter Thread starter Charles Zhang
  • Start date Start date
C

Charles Zhang

For Win32 application, I could use "__asm pause". However, for X64
platform, the inline assembler is not supported. Is there a compiler
intrinsics for "__asm pause"?

Thanks

Charles Zhang
 
Charles said:
For Win32 application, I could use "__asm pause". However, for X64
platform, the inline assembler is not supported. Is there a compiler
intrinsics for "__asm pause"?

Yes, _mm_pause().


Bo Persson
 
Thank you very much.

It was hard for me to find that out. You saved me.

Charles Zhang
 
Back
Top