threading.h File Reference
Threading abstraction layer. More...
Go to the source code of this file.
Functions | |
void | mbedtls_threading_set_alt (void(*mutex_init)(mbedtls_threading_mutex_t *), void(*mutex_free)(mbedtls_threading_mutex_t *), int(*mutex_lock)(mbedtls_threading_mutex_t *), int(*mutex_unlock)(mbedtls_threading_mutex_t *)) |
Set your alternate threading implementation function pointers and initialize global mutexes. | |
void | mbedtls_threading_free_alt (void) |
Free global mutexes. |
Detailed Description
Threading abstraction layer.
Definition in file threading.h.
Function Documentation
void mbedtls_threading_free_alt | ( | void | ) |
Free global mutexes.
Definition at line 121 of file threading.c.
void mbedtls_threading_set_alt | ( | void(*)(mbedtls_threading_mutex_t *) | mutex_init, |
void(*)(mbedtls_threading_mutex_t *) | mutex_free, | ||
int(*)(mbedtls_threading_mutex_t *) | mutex_lock, | ||
int(*)(mbedtls_threading_mutex_t *) | mutex_unlock | ||
) |
Set your alternate threading implementation function pointers and initialize global mutexes.
If used, this function must be called once in the main thread before any other mbed TLS function is called, and mbedtls_threading_free_alt() must be called once in the main thread after all other mbed TLS functions.
- Note:
- mutex_init() and mutex_free() don't return a status code. If mutex_init() fails, it should leave its argument (the mutex) in a state such that mutex_lock() will fail when called with this argument.
- Parameters:
-
mutex_init the init function implementation mutex_free the free function implementation mutex_lock the lock function implementation mutex_unlock the unlock function implementation
Definition at line 104 of file threading.c.
Generated on Tue Jul 12 2022 12:22:34 by
