]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/ERR_remove_state.pod
Less documentation for deprecated API
[thirdparty/openssl.git] / doc / man3 / ERR_remove_state.pod
CommitLineData
388f2f56
UM
1=pod
2
3=head1 NAME
4
21e00174 5ERR_remove_thread_state, ERR_remove_state - DEPRECATED
388f2f56
UM
6
7=head1 SYNOPSIS
8
aafbe1cc
MC
9Deprecated:
10
98186eb4 11 #if OPENSSL_API_COMPAT < 0x10000000L
b3696a55 12 void ERR_remove_state(unsigned long tid);
98186eb4 13 #endif
388f2f56 14
21e00174 15 #if OPENSSL_API_COMPAT < 0x10100000L
b3696a55 16 void ERR_remove_thread_state(void *tid);
21e00174 17 #endif
388f2f56 18
21e00174 19=head1 DESCRIPTION
388f2f56 20
b3696a55
RS
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.
aafbe1cc 25
388f2f56
UM
26=head1 RETURN VALUE
27
b3696a55 28ERR_remove_state() and ERR_remove_thread_state() return no value.
388f2f56
UM
29
30=head1 SEE ALSO
31
73fb82b7 32LL<OPENSSL_init_crypto(3)>
388f2f56
UM
33
34=head1 HISTORY
35
b3696a55
RS
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.
388f2f56 39
e2f92610
RS
40=head1 COPYRIGHT
41
73fb82b7 42Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
e2f92610
RS
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