ERR_remove_state.pod 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 pid);
  8. #endif
  9. #if OPENSSL_API_COMPAT < 0x10100000L
  10. void ERR_remove_thread_state(void *);
  11. #endif
  12. =head1 DESCRIPTION
  13. The functions described here were used to free the error queue
  14. associated with the current or specified thread.
  15. They are now deprecated and do nothing, as the OpenSSL libraries now
  16. normally do all thread initialisation and deinitialisation
  17. automatically (see L<OPENSSL_init_crypto(3)>).
  18. =head1 RETURN VALUE
  19. The functions described here 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 when
  24. ERR_remove_thread_state() was introduced.
  25. ERR_remove_thread_state() was deprecated in OpenSSL 1.1.0 when the
  26. thread handling functionality was entirely rewritten.
  27. =head1 COPYRIGHT
  28. Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
  29. Licensed under the OpenSSL license (the "License"). You may not use
  30. this file except in compliance with the License. You can obtain a copy
  31. in the file LICENSE in the source distribution or at
  32. L<https://www.openssl.org/source/license.html>.
  33. =cut