Remove explicit dependency on configdata.pm when processing .in files
[openssl.git] / doc / man3 / ERR_remove_state.pod
1 =pod
2
3 =head1 NAME
4
5 ERR_remove_thread_state, ERR_remove_state - DEPRECATED
6
7 =head1 SYNOPSIS
8
9 Deprecated since OpenSSL 1.0.0, can be hidden entirely by defining
10 B<OPENSSL_API_COMPAT> with a suitable version value, see
11 L<openssl_user_macros(7)>:
12
13  void ERR_remove_state(unsigned long tid);
14
15 Deprecated since OpenSSL 1.1.0, can be hidden entirely by defining
16 B<OPENSSL_API_COMPAT> with a suitable version value, see
17 L<openssl_user_macros(7)>:
18
19  void ERR_remove_thread_state(void *tid);
20
21 =head1 DESCRIPTION
22
23 ERR_remove_state() frees the error queue associated with the specified
24 thread, identified by B<tid>.
25 ERR_remove_thread_state() does the same thing, except the identifier is
26 an opaque pointer.
27
28 =head1 RETURN VALUES
29
30 ERR_remove_state() and ERR_remove_thread_state() return no value.
31
32 =head1 SEE ALSO
33
34 LL<OPENSSL_init_crypto(3)>
35
36 =head1 HISTORY
37
38 ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
39 ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these functions
40 and should not be used.
41
42 =head1 COPYRIGHT
43
44 Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
45
46 Licensed under the Apache License 2.0 (the "License").  You may not use
47 this file except in compliance with the License.  You can obtain a copy
48 in the file LICENSE in the source distribution or at
49 L<https://www.openssl.org/source/license.html>.
50
51 =cut