2000-02-01 01:37:00 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2016-05-08 15:01:09 +00:00
|
|
|
ERR_remove_thread_state, ERR_remove_state - DEPRECATED
|
2000-02-01 01:37:00 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2018-12-03 09:59:11 +00:00
|
|
|
Deprecated since OpenSSL 1.0.0, can be hidden entirely by defining
|
|
|
|
B<OPENSSL_API_COMPAT> with a suitable version value, see
|
|
|
|
L<openssl_user_macros(7)>:
|
2013-06-12 22:42:08 +00:00
|
|
|
|
2017-09-02 13:35:50 +00:00
|
|
|
void ERR_remove_state(unsigned long tid);
|
2000-02-01 01:37:00 +00:00
|
|
|
|
2018-12-03 09:59:11 +00:00
|
|
|
Deprecated since OpenSSL 1.1.0, can be hidden entirely by defining
|
|
|
|
B<OPENSSL_API_COMPAT> with a suitable version value, see
|
|
|
|
L<openssl_user_macros(7)>:
|
|
|
|
|
2017-09-02 13:35:50 +00:00
|
|
|
void ERR_remove_thread_state(void *tid);
|
2000-02-01 01:37:00 +00:00
|
|
|
|
2016-05-08 15:01:09 +00:00
|
|
|
=head1 DESCRIPTION
|
2000-02-01 01:37:00 +00:00
|
|
|
|
2017-09-02 13:35:50 +00:00
|
|
|
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.
|
2013-06-12 22:42:08 +00:00
|
|
|
|
2017-12-25 09:50:39 +00:00
|
|
|
=head1 RETURN VALUES
|
2000-02-01 01:37:00 +00:00
|
|
|
|
2017-09-02 13:35:50 +00:00
|
|
|
ERR_remove_state() and ERR_remove_thread_state() return no value.
|
2000-02-01 01:37:00 +00:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2017-03-02 15:07:21 +00:00
|
|
|
LL<OPENSSL_init_crypto(3)>
|
2000-02-01 01:37:00 +00:00
|
|
|
|
|
|
|
=head1 HISTORY
|
|
|
|
|
2017-09-02 13:35:50 +00:00
|
|
|
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.
|
2000-02-01 01:37:00 +00:00
|
|
|
|
2016-05-18 15:44:05 +00:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2018-01-15 17:01:46 +00:00
|
|
|
Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 15:44:05 +00:00
|
|
|
|
2018-12-06 13:04:44 +00:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 15:44:05 +00:00
|
|
|
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
|