X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fthreads_none.c;h=ff95556c17d62356ffbec20bf84340256b431d65;hp=35c985b52cbf4bb2d5570be8623338206c394059;hb=724339ff44235149c4e8ddae614e1dda6863e23e;hpb=7de2b9c4afd90359e47d81a5fa70bcb8506fbf91 diff --git a/crypto/threads_none.c b/crypto/threads_none.c index 35c985b52c..ff95556c17 100644 --- a/crypto/threads_none.c +++ b/crypto/threads_none.c @@ -1,7 +1,7 @@ /* - * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html @@ -128,18 +128,6 @@ int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) return 1; } -int CRYPTO_atomic_read(int *val, int *ret, CRYPTO_RWLOCK *lock) -{ - *ret = *val; - return 1; -} - -int CRYPTO_atomic_write(int *val, int n, CRYPTO_RWLOCK *lock) -{ - *val = n; - return 1; -} - int openssl_init_fork_handlers(void) { return 0;