ERR_remove_state.pod 1.1 KB

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