mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
Fix a stupid cut & paste error.
svn path=/trunk/; revision=13696
This commit is contained in:
@@ -7612,7 +7612,16 @@ KeMemoryBarrier(
|
||||
VOID)
|
||||
{
|
||||
volatile LONG Barrier;
|
||||
__asm__ __volatile__ ("xchg %%eax, %0" : : "m" (Barrier) : "a");
|
||||
__asm__ __volatile__ ("xchg %%eax, %0" : : "m" (Barrier) : "%eax");
|
||||
}
|
||||
|
||||
static __inline
|
||||
VOID
|
||||
KeMemoryBarrier(
|
||||
VOID)
|
||||
{
|
||||
volatile LONG Barrier;
|
||||
__asm__ __volatile__ ("xchg %%eax, %0" : : "m" (Barrier) : "%eax");
|
||||
}
|
||||
|
||||
NTOSAPI
|
||||
|
||||
Reference in New Issue
Block a user