You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling pthread_key_create() every time thread_safe_var_init() is called is too resource intensive in that some C libraries only support a limited number of keys. We only need one key as we use them just to drive cleanup on thread exit.
This is important if libraries like OpenSSL are going to use this.
The text was updated successfully, but these errors were encountered:
Calling
pthread_key_create()
every timethread_safe_var_init()
is called is too resource intensive in that some C libraries only support a limited number of keys. We only need one key as we use them just to drive cleanup on thread exit.This is important if libraries like OpenSSL are going to use this.
The text was updated successfully, but these errors were encountered: