You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-12-15 08:03:15 -08:00
Rebase against 4e2ad334b5881af7661be4d6df3c51aae92ca4a2
This commit is contained in:
committed by
Zebediah Figura
parent
d4918b4305
commit
76ba9d2387
@@ -45,9 +45,9 @@ index 356d631..381d5aa 100644
|
||||
+ if (!fd_cache[entry]) continue;
|
||||
+ for (idx = 0; idx < FD_CACHE_BLOCK_SIZE; idx++)
|
||||
+ {
|
||||
+ cache.data = interlocked_cmpxchg64( &fd_cache[entry][idx].data, 0, 0 );
|
||||
+ cache.data = InterlockedCompareExchange64( &fd_cache[entry][idx].data, 0, 0 );
|
||||
+ if (cache.s.type != type || cache.s.fd == 0) continue;
|
||||
+ if (interlocked_cmpxchg64( &fd_cache[entry][idx].data, 0, cache.data ) != cache.data) continue;
|
||||
+ if (InterlockedCompareExchange64( &fd_cache[entry][idx].data, 0, cache.data ) != cache.data) continue;
|
||||
+ close( cache.s.fd - 1 );
|
||||
+ }
|
||||
+ }
|
||||
|
||||
Reference in New Issue
Block a user