mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[INTRIN]
_mm_pause has an implicit full memory barrier, emulate this on gcc as well svn path=/trunk/; revision=53133
This commit is contained in:
parent
1eb5d7d6db
commit
18d14eb931
1 changed files with 1 additions and 1 deletions
|
@ -1497,7 +1497,7 @@ __INTRIN_INLINE void __sidt(void *Destination)
|
|||
|
||||
__INTRIN_INLINE void _mm_pause(void)
|
||||
{
|
||||
__asm__ __volatile__("pause");
|
||||
__asm__ __volatile__("pause" : : : "memory");
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in a new issue