ERR_remove_state.3ossl - Man Page

DEPRECATED

Synopsis

The following function has been deprecated since OpenSSL 1.0.0, and can be hidden entirely by defining OPENSSL_API_COMPAT with a suitable version value, see openssl_user_macros(7):

 void ERR_remove_state(unsigned long tid);

The following function has been deprecated since OpenSSL 1.1.0, and can be hidden entirely by defining OPENSSL_API_COMPAT with a suitable version value, see openssl_user_macros(7):

 void ERR_remove_thread_state(void *tid);

Description

ERR_remove_state() frees the error queue associated with the specified thread, identified by tid. ERR_remove_thread_state() does the same thing, except the identifier is an opaque pointer.

Return Values

ERR_remove_state() and ERR_remove_thread_state() return no value.

See Also

LOPENSSL_init_crypto(3)

History

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.

Referenced By

The man page ERR_remove_thread_state.3ossl(3) is an alias of ERR_remove_state.3ossl(3).

2024-04-04 3.2.1 OpenSSL