1=pod
2
3=head1 NAME
4
5ERR_remove_thread_state, ERR_remove_state - DEPRECATED
6
7=head1 SYNOPSIS
8
9Deprecated:
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
19=head1 DESCRIPTION
20
21ERR_remove_state() frees the error queue associated with the specified
22thread, identified by B<tid>.
23ERR_remove_thread_state() does the same thing, except the identifier is
24an opaque pointer.
25
26=head1 RETURN VALUES
27
28ERR_remove_state() and ERR_remove_thread_state() return no value.
29
30=head1 SEE ALSO
31
32LL<OPENSSL_init_crypto(3)>
33
34=head1 HISTORY
35
36ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
37ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these functions
38and should not be used.
39
40=head1 COPYRIGHT
41
42Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
43
44Licensed under the OpenSSL license (the "License").  You may not use
45this file except in compliance with the License.  You can obtain a copy
46in the file LICENSE in the source distribution or at
47L<https://www.openssl.org/source/license.html>.
48
49=cut
50