aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-08 17:01:09 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-10 11:31:05 +0200
commit21e001747d4a246827ad432fc508d67ac404ecdb (patch)
tree512105b818918f601165eb8105c725f46d1f3ba4 /crypto/include
parent06aa885d0ccbb018ff7044258e9a8b6e7a56681d (diff)
downloadopenssl-21e001747d4a246827ad432fc508d67ac404ecdb.tar.gz
Restore the ERR_remove_thread_state() API and make it a no-op
The ERR_remove_thread_state() API is restored to take a pointer argument, but does nothing more. ERR_remove_state() is also made into a no-op. Both functions are deprecated and users are recommended to use OPENSSL_thread_stop() instead. Documentation is changed to reflect this. Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/err_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/include/internal/err_int.h b/crypto/include/internal/err_int.h
index 7f1037e939..0aebe8466e 100644
--- a/crypto/include/internal/err_int.h
+++ b/crypto/include/internal/err_int.h
@@ -13,5 +13,6 @@
void err_load_crypto_strings_int(void);
void err_cleanup(void);
+void err_delete_thread_state(void);
#endif