summaryrefslogtreecommitdiffstats
path: root/crypto/threads_none.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/threads_none.c')
-rw-r--r--crypto/threads_none.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/crypto/threads_none.c b/crypto/threads_none.c
index 7e9ec2d151..30ed4e6999 100644
--- a/crypto/threads_none.c
+++ b/crypto/threads_none.c
@@ -127,7 +127,13 @@ int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock)
int CRYPTO_atomic_read(int *val, int *ret, CRYPTO_RWLOCK *lock)
{
- *ret = *val;
+ *ret = *val;
+ return 1;
+}
+
+int CRYPTO_atomic_write(int *val, int n, CRYPTO_RWLOCK *lock)
+{
+ *val = n;
return 1;
}