- Fix intlck compile.

svn path=/trunk/; revision=25662
This commit is contained in:
Aleksey Bragin
2007-01-30 19:50:34 +00:00
parent fe7ce99eb1
commit ee9beb65c6
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -25,7 +25,7 @@
LONG
NTAPI
InterlockedCompareExchange(
LPLONG Destination,
IN OUT LONG volatile *Destination,
LONG Exchange,
LONG Comperand)
{
+1 -1
View File
@@ -22,7 +22,7 @@
#include <windows.h>
LONG
NTAPI
InterlockedDecrement(LPLONG lpAddend)
InterlockedDecrement(IN OUT LONG volatile *lpAddend)
{
LONG ret;
__asm__
+1 -1
View File
@@ -23,7 +23,7 @@
#include <windows.h>
LONG
NTAPI
InterlockedExchange(LPLONG target, LONG value)
InterlockedExchange(IN OUT LONG volatile *target, LONG value)
{
LONG ret;
__asm__ (
+1 -1
View File
@@ -25,7 +25,7 @@
LONG
NTAPI
InterlockedExchangeAdd(
PLONG Addend,
IN OUT LONG volatile *Addend,
LONG Increment)
{
LONG ret;
+1 -1
View File
@@ -22,7 +22,7 @@
#include <windows.h>
LONG
NTAPI
InterlockedIncrement(PLONG lpAddend)
InterlockedIncrement(IN OUT LONG volatile *lpAddend)
{
LONG ret;
__asm__