ERR_remove_state.pod 1.1 KB
Newer Older
U
Ulf Möller 已提交
1 2 3 4
=pod

=head1 NAME

5
ERR_remove_thread_state, ERR_remove_state - DEPRECATED
U
Ulf Möller 已提交
6 7 8

=head1 SYNOPSIS

M
Matt Caswell 已提交
9 10
Deprecated:

11
 #if OPENSSL_API_COMPAT < 0x10000000L
12
 void ERR_remove_state(unsigned long tid);
13
 #endif
U
Ulf Möller 已提交
14

15
 #if OPENSSL_API_COMPAT < 0x10100000L
16
 void ERR_remove_thread_state(void *tid);
17
 #endif
U
Ulf Möller 已提交
18

19
=head1 DESCRIPTION
U
Ulf Möller 已提交
20

21 22 23 24
ERR_remove_state() frees the error queue associated with the specified
thread, identified by B<tid>.
ERR_remove_thread_state() does the same thing, except the identifier is
an opaque pointer.
M
Matt Caswell 已提交
25

26
=head1 RETURN VALUES
U
Ulf Möller 已提交
27

28
ERR_remove_state() and ERR_remove_thread_state() return no value.
U
Ulf Möller 已提交
29 30 31

=head1 SEE ALSO

32
LL<OPENSSL_init_crypto(3)>
U
Ulf Möller 已提交
33 34 35

=head1 HISTORY

36 37 38
ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these functions
and should not be used.
U
Ulf Möller 已提交
39

R
Rich Salz 已提交
40 41
=head1 COPYRIGHT

42
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
R
Rich Salz 已提交
43 44 45 46 47 48 49

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut