mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Return a value from atomic read on Windows.
Use a read lock when reading using pthreads. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4517)
This commit is contained in:
parent
19f05ebc3f
commit
f49452c297
@ -177,7 +177,7 @@ int CRYPTO_atomic_read(int *val, int *ret, CRYPTO_RWLOCK *lock)
|
||||
return 1;
|
||||
}
|
||||
# endif
|
||||
if (!CRYPTO_THREAD_write_lock(lock))
|
||||
if (!CRYPTO_THREAD_read_lock(lock))
|
||||
return 0;
|
||||
|
||||
*ret = *val;
|
||||
|
@ -135,7 +135,7 @@ int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock)
|
||||
|
||||
int CRYPTO_atomic_read(int *val, int *ret, CRYPTO_RWLOCK *lock)
|
||||
{
|
||||
InterlockedCompareExchange(val, 0, 0);
|
||||
*ret = InterlockedCompareExchange(val, 0, 0);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user