]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/ERR_remove_state.pod
Make BIGNUM rand functions available within the FIPS module
[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
be80b21d
RL
9Deprecated since OpenSSL 1.0.0, can be hidden entirely by defining
10B<OPENSSL_API_COMPAT> with a suitable version value, see
11L<openssl_user_macros(7)>:
aafbe1cc 12
b3696a55 13 void ERR_remove_state(unsigned long tid);
388f2f56 14
be80b21d
RL
15Deprecated since OpenSSL 1.1.0, can be hidden entirely by defining
16B<OPENSSL_API_COMPAT> with a suitable version value, see
17L<openssl_user_macros(7)>:
18
b3696a55 19 void ERR_remove_thread_state(void *tid);
388f2f56 20
21e00174 21=head1 DESCRIPTION
388f2f56 22
b3696a55
RS
23ERR_remove_state() frees the error queue associated with the specified
24thread, identified by B<tid>.
25ERR_remove_thread_state() does the same thing, except the identifier is
26an opaque pointer.
aafbe1cc 27
1f13ad31 28=head1 RETURN VALUES
388f2f56 29
b3696a55 30ERR_remove_state() and ERR_remove_thread_state() return no value.
388f2f56
UM
31
32=head1 SEE ALSO
33
73fb82b7 34LL<OPENSSL_init_crypto(3)>
388f2f56
UM
35
36=head1 HISTORY
37
b3696a55
RS
38ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
39ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these functions
40and should not be used.
388f2f56 41
e2f92610
RS
42=head1 COPYRIGHT
43
61f805c1 44Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
e2f92610 45
4746f25a 46Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
47this file except in compliance with the License. You can obtain a copy
48in the file LICENSE in the source distribution or at
49L<https://www.openssl.org/source/license.html>.
50
51=cut