1ERR_REMOVE_STATE(3ossl) OpenSSL ERR_REMOVE_STATE(3ossl)
2
3
4
6 ERR_remove_thread_state, ERR_remove_state - DEPRECATED
7
9 The following function has been deprecated since OpenSSL 1.0.0, and can
10 be hidden entirely by defining OPENSSL_API_COMPAT with a suitable
11 version value, see openssl_user_macros(7):
12
13 void ERR_remove_state(unsigned long tid);
14
15 The following function has been deprecated since OpenSSL 1.1.0, and can
16 be hidden entirely by defining OPENSSL_API_COMPAT with a suitable
17 version value, see openssl_user_macros(7):
18
19 void ERR_remove_thread_state(void *tid);
20
22 ERR_remove_state() frees the error queue associated with the specified
23 thread, identified by tid. ERR_remove_thread_state() does the same
24 thing, except the identifier is an opaque pointer.
25
27 ERR_remove_state() and ERR_remove_thread_state() return no value.
28
30 LOPENSSL_init_crypto(3)
31
33 ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
34 ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these
35 functions and should not be used.
36
38 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
39
40 Licensed under the Apache License 2.0 (the "License"). You may not use
41 this file except in compliance with the License. You can obtain a copy
42 in the file LICENSE in the source distribution or at
43 <https://www.openssl.org/source/license.html>.
44
45
46
473.0.5 2022-11-01 ERR_REMOVE_STATE(3ossl)