Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Embed: (wiki syntax)

« Back to documentation index

threading.h File Reference

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 163 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_initthe init function implementation
mutex_freethe free function implementation
mutex_lockthe lock function implementation
mutex_unlockthe unlock function implementation

Definition at line 142 of file threading.c.