1ERR_REMOVE_STATE(3)                 OpenSSL                ERR_REMOVE_STATE(3)
2
3
4

NAME

6       ERR_remove_thread_state, ERR_remove_state - DEPRECATED
7

SYNOPSIS

9       Deprecated:
10
11        #if OPENSSL_API_COMPAT < 0x10000000L
12        void ERR_remove_state(unsigned long tid);
13        #endif
14
15        #if OPENSSL_API_COMPAT < 0x10100000L
16        void ERR_remove_thread_state(void *tid);
17        #endif
18

DESCRIPTION

20       ERR_remove_state() frees the error queue associated with the specified
21       thread, identified by tid.  ERR_remove_thread_state() does the same
22       thing, except the identifier is an opaque pointer.
23

RETURN VALUES

25       ERR_remove_state() and ERR_remove_thread_state() return no value.
26

SEE ALSO

28       LOPENSSL_init_crypto(3)
29

HISTORY

31       ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
32       ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these
33       functions and should not be used.
34
36       Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
37
38       Licensed under the OpenSSL license (the "License").  You may not use
39       this file except in compliance with the License.  You can obtain a copy
40       in the file LICENSE in the source distribution or at
41       <https://www.openssl.org/source/license.html>.
42
43
44
451.1.1                             2018-09-11               ERR_REMOVE_STATE(3)
Impressum