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