2008-06-25 Brandon Sneed <nivenh@sourceware.org>
* include/winbase.h (InterlockedIncrement, InterlockedDecrement, InterlockedCompareExchange, InterlockedExchange, InterlockedCompareExchangePointer, InterlockedExchangeAdd, InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
This commit is contained in:
parent
5592f939b4
commit
854c27dd8d
@ -1,3 +1,10 @@
|
|||||||
|
2008-06-25 Brandon Sneed <nivenh@sourceware.org>
|
||||||
|
|
||||||
|
* include/winbase.h (InterlockedIncrement, InterlockedDecrement,
|
||||||
|
InterlockedCompareExchange, InterlockedExchange,
|
||||||
|
InterlockedCompareExchangePointer, InterlockedExchangeAdd,
|
||||||
|
InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
|
||||||
|
|
||||||
2008-06-20 Danny Smith <dannysmith@users.sourceforge.net>
|
2008-06-20 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
|
* lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
|
||||||
|
@ -1660,20 +1660,20 @@ WINBASEAPI VOID WINAPI InitializeSListHead(PSLIST_HEADER);
|
|||||||
#endif
|
#endif
|
||||||
#ifndef __INTERLOCKED_DECLARED
|
#ifndef __INTERLOCKED_DECLARED
|
||||||
#define __INTERLOCKED_DECLARED
|
#define __INTERLOCKED_DECLARED
|
||||||
LONG WINAPI InterlockedCompareExchange(LPLONG,LONG,LONG);
|
LONG WINAPI InterlockedCompareExchange(LONG volatile *,LONG,LONG);
|
||||||
/* PVOID WINAPI InterlockedCompareExchangePointer(PVOID*,PVOID,PVOID); */
|
/* PVOID WINAPI InterlockedCompareExchangePointer(PVOID*,PVOID,PVOID); */
|
||||||
#define InterlockedCompareExchangePointer(d,e,c) \
|
#define InterlockedCompareExchangePointer(d,e,c) \
|
||||||
(PVOID)InterlockedCompareExchange((LPLONG)(d),(LONG)(e),(LONG)(c))
|
(PVOID)InterlockedCompareExchange((LONG volatile *)(d),(LONG)(e),(LONG)(c))
|
||||||
LONG WINAPI InterlockedDecrement(LPLONG);
|
LONG WINAPI InterlockedDecrement(LONG volatile *);
|
||||||
LONG WINAPI InterlockedExchange(LPLONG,LONG);
|
LONG WINAPI InterlockedExchange(LONG volatile *,LONG);
|
||||||
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
|
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
|
||||||
#define InterlockedExchangePointer(t,v) \
|
#define InterlockedExchangePointer(t,v) \
|
||||||
(PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v))
|
(PVOID)InterlockedExchange((LONG volatile *)(t),(LONG)(v))
|
||||||
LONG WINAPI InterlockedExchangeAdd(LPLONG,LONG);
|
LONG WINAPI InterlockedExchangeAdd(LONG volatile *,LONG);
|
||||||
#if (_WIN32_WINNT >= 0x0501)
|
#if (_WIN32_WINNT >= 0x0501)
|
||||||
PSLIST_ENTRY WINAPI InterlockedFlushSList(PSLIST_HEADER);
|
PSLIST_ENTRY WINAPI InterlockedFlushSList(PSLIST_HEADER);
|
||||||
#endif
|
#endif
|
||||||
LONG WINAPI InterlockedIncrement(LPLONG);
|
LONG WINAPI InterlockedIncrement(LONG volatile *);
|
||||||
#if (_WIN32_WINNT >= 0x0501)
|
#if (_WIN32_WINNT >= 0x0501)
|
||||||
PSLIST_ENTRY WINAPI InterlockedPopEntrySList(PSLIST_HEADER);
|
PSLIST_ENTRY WINAPI InterlockedPopEntrySList(PSLIST_HEADER);
|
||||||
PSLIST_ENTRY WINAPI InterlockedPushEntrySList(PSLIST_HEADER,PSLIST_ENTRY);
|
PSLIST_ENTRY WINAPI InterlockedPushEntrySList(PSLIST_HEADER,PSLIST_ENTRY);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user