mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 04:13:39 +08:00
8 lines
152 B
C
8 lines
152 B
C
|
#ifndef __QEMU_BARRIER_H
|
||
|
#define __QEMU_BARRIER_H 1
|
||
|
|
||
|
/* FIXME: arch dependant, x86 version */
|
||
|
#define smp_wmb() asm volatile("" ::: "memory")
|
||
|
|
||
|
#endif
|