aboutsummaryrefslogtreecommitdiff
path: root/crypto/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-06-18 18:37:38 +0100
committerMatt Caswell <matt@openssl.org>2019-06-19 11:54:34 +0100
commit6913f5fe05a38fa72213b5b5d1f41ef10ca908bd (patch)
tree386fad30f5f06eaed4cdadcd8a24a36b4e09aff1 /crypto/include
parentd73458d17ac7e44270a2bcbace45ab99334754b4 (diff)
downloadopenssl-6913f5fe05a38fa72213b5b5d1f41ef10ca908bd.zip
openssl-6913f5fe05a38fa72213b5b5d1f41ef10ca908bd.tar.gz
openssl-6913f5fe05a38fa72213b5b5d1f41ef10ca908bd.tar.bz2
Provide an ability to deregister thread stop handlers
If a provider gets unloaded then any thread stop handlers that it had registered will be left hanging. We should clean them up before tearing down the provider. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9186)
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/cryptlib_int.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/include/internal/cryptlib_int.h b/crypto/include/internal/cryptlib_int.h
index a69bdcd..673a004 100644
--- a/crypto/include/internal/cryptlib_int.h
+++ b/crypto/include/internal/cryptlib_int.h
@@ -12,8 +12,9 @@
/* This file is not scanned by mkdef.pl, whereas cryptlib.h is */
-int ossl_init_thread_start(void *arg,
+int ossl_init_thread_start(const void *index, void *arg,
OSSL_thread_stop_handler_fn handfn);
+int ossl_init_thread_deregister(void *index);
int ossl_init_thread(void);
void ossl_cleanup_thread(void);
void ossl_ctx_thread_stop(void *arg);