ERR_remove_state.pod 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. =pod
  2. =head1 NAME
  3. ERR_remove_thread_state, ERR_remove_state - DEPRECATED
  4. =head1 SYNOPSIS
  5. Deprecated since OpenSSL 1.0.0, can be hidden entirely by defining
  6. B<OPENSSL_API_COMPAT> with a suitable version value, see
  7. L<openssl_user_macros(7)>:
  8. void ERR_remove_state(unsigned long tid);
  9. Deprecated since OpenSSL 1.1.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. void ERR_remove_thread_state(void *tid);
  13. =head1 DESCRIPTION
  14. ERR_remove_state() frees the error queue associated with the specified
  15. thread, identified by B<tid>.
  16. ERR_remove_thread_state() does the same thing, except the identifier is
  17. an opaque pointer.
  18. =head1 RETURN VALUES
  19. ERR_remove_state() and ERR_remove_thread_state() return no value.
  20. =head1 SEE ALSO
  21. LL<OPENSSL_init_crypto(3)>
  22. =head1 HISTORY
  23. ERR_remove_state() was deprecated in OpenSSL 1.0.0 and
  24. ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0; these functions
  25. and should not be used.
  26. =head1 COPYRIGHT
  27. Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
  28. Licensed under the Apache License 2.0 (the "License"). You may not use
  29. this file except in compliance with the License. You can obtain a copy
  30. in the file LICENSE in the source distribution or at
  31. L<https://www.openssl.org/source/license.html>.
  32. =cut