Commit 3a428170 authored by Alexandre Julliard's avatar Alexandre Julliard

libport: Always include the interlocked_cmpxchg128 fallback.

parent 3e162934
......@@ -343,7 +343,6 @@ int interlocked_xchg_add( int *dest, int incr )
return retv;
}
#ifdef _WIN64
int interlocked_cmpxchg128( __int64 *dest, __int64 xchg_high, __int64 xchg_low, __int64 *compare )
{
int retv;
......@@ -363,6 +362,5 @@ int interlocked_cmpxchg128( __int64 *dest, __int64 xchg_high, __int64 xchg_low,
pthread_mutex_unlock( &interlocked_mutex );
return retv;
}
#endif
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment