ERR_remove_state(3) | LibreSSL | ERR_remove_state(3) |
NAME
ERR_remove_thread_state, ERR_remove_state - free a thread's error queueSYNOPSIS
#include <openssl/err.h>
void ERR_remove_thread_state(const CRYPTO_THREADID *tid);
void ERR_remove_state(unsigned long pid);
DESCRIPTION
ERR_remove_thread_state() frees the error queue associated with thread tid. If tid == NULL, the current thread will have its error queue removed.RETURN VALUE
ERR_remove_thread_state and ERR_remove_state() return no value.SEE ALSO
err(3)HISTORY
ERR_remove_state() is available in all versions of SSLeay and OpenSSL. It was deprecated in OpenSSL 1.0.0 when ERR_remove_thread_state was introduced and thread IDs were introduced to identify threads instead of 'unsigned long'.2015-10-26 | LibreSSL |