diff options
author | Earnie Boyd <earnie@users.sf.net> | 2012-08-08 20:28:26 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2012-08-08 20:28:26 +0000 |
commit | cc02df128665f400e911e1f67e9963e827962914 (patch) | |
tree | 416de1beccb06785c266093a82553cd60adc44c9 | |
parent | b35bb085d85e8de057eb6fad4760fe6e9c4fb71c (diff) | |
download | cygnal-cc02df128665f400e911e1f67e9963e827962914.tar.gz cygnal-cc02df128665f400e911e1f67e9963e827962914.tar.bz2 cygnal-cc02df128665f400e911e1f67e9963e827962914.zip |
* lib/kernel32.def (InterlockedDecrement): Remove the @BYTE count since
we now declare it as __cdecl.
(InterlockedIncrement): Ditto.
(InterlockedExchange): Ditto.
-rw-r--r-- | winsup/w32api/ChangeLog | 7 | ||||
-rw-r--r-- | winsup/w32api/lib/kernel32.def | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 711b066c6..79892af2a 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,10 @@ +2012-08-08 Earnie Boyd <earnie@users.sourceforge.net> + + * lib/kernel32.def (InterlockedDecrement): Remove the @BYTE count since + we now declare it as __cdecl. + (InterlockedIncrement): Ditto. + (InterlockedExchange): Ditto. + 2012-08-06 Earnie Boyd <earnie@users.sourceforge.net> * include/winnt.h (MemoryBarrier): Define to __mingworg_MemoryBarrier() diff --git a/winsup/w32api/lib/kernel32.def b/winsup/w32api/lib/kernel32.def index fca559aac..177160f6b 100644 --- a/winsup/w32api/lib/kernel32.def +++ b/winsup/w32api/lib/kernel32.def @@ -749,11 +749,11 @@ InitializeSListHead@4 InitializeSRWLock@4 InterlockedCompareExchange64@20 InterlockedCompareExchange@12 -InterlockedDecrement@4 -InterlockedExchange@8 +InterlockedDecrement +InterlockedExchange InterlockedExchangeAdd@8 InterlockedFlushSList@4 -InterlockedIncrement@4 +InterlockedIncrement InterlockedPopEntrySList@4 InterlockedPushEntrySList@8 InvalidateConsoleDIBits@8 |