Re: [ovs-dev] [PATCH 2/4] windows: Add interlocked function definitions for VS 2015

2017-11-07 Thread Anand Kumar
Acked-by: Anand Kumar Thanks, Anand Kumar On 11/1/17, 10:19 AM, "ovs-dev-boun...@openvswitch.org on behalf of Alin Gabriel Serdean" wrote: For some unclear and accidental reasons, the Windows 10 SDK renamed _Interlocked* functions to _InlineInterlocked* (although the documentation

Re: [ovs-dev] [PATCH 2/4] windows: Add interlocked function definitions for VS 2015

2017-11-03 Thread Ben Pfaff
On Wed, Nov 01, 2017 at 07:19:05PM +0200, Alin Gabriel Serdean wrote: > For some unclear and accidental reasons, the Windows 10 SDK > renamed _Interlocked* functions to _InlineInterlocked* (although the > documentation still points to the old form: > https://msdn.microsoft.com/en-us/library/191ca0s

[ovs-dev] [PATCH 2/4] windows: Add interlocked function definitions for VS 2015

2017-11-01 Thread Alin Gabriel Serdean
For some unclear and accidental reasons, the Windows 10 SDK renamed _Interlocked* functions to _InlineInterlocked* (although the documentation still points to the old form: https://msdn.microsoft.com/en-us/library/191ca0sk.aspx). This patch adds mappings for used functions. Signed-off-by: Alin Ga