mbed TLS v2.2.0
threading.h
Go to the documentation of this file.
1 
23 #ifndef MBEDTLS_THREADING_H
24 #define MBEDTLS_THREADING_H
25 
26 #if !defined(MBEDTLS_CONFIG_FILE)
27 #include "config.h"
28 #else
29 #include MBEDTLS_CONFIG_FILE
30 #endif
31 
32 #include <stdlib.h>
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 #define MBEDTLS_ERR_THREADING_FEATURE_UNAVAILABLE -0x001A
39 #define MBEDTLS_ERR_THREADING_BAD_INPUT_DATA -0x001C
40 #define MBEDTLS_ERR_THREADING_MUTEX_ERROR -0x001E
42 #if defined(MBEDTLS_THREADING_PTHREAD)
43 #include <pthread.h>
44 typedef struct
45 {
46  pthread_mutex_t mutex;
47  char is_valid;
48 } mbedtls_threading_mutex_t;
49 #endif
50 
51 #if defined(MBEDTLS_THREADING_ALT)
52 /* You should define the mbedtls_threading_mutex_t type in your header */
53 #include "threading_alt.h"
54 
73 void mbedtls_threading_set_alt( void (*mutex_init)( mbedtls_threading_mutex_t * ),
74  void (*mutex_free)( mbedtls_threading_mutex_t * ),
75  int (*mutex_lock)( mbedtls_threading_mutex_t * ),
76  int (*mutex_unlock)( mbedtls_threading_mutex_t * ) );
77 
81 void mbedtls_threading_free_alt( void );
82 #endif /* MBEDTLS_THREADING_ALT */
83 
84 /*
85  * The function pointers for mutex_init, mutex_free, mutex_ and mutex_unlock
86  *
87  * All these functions are expected to work or the result will be undefined.
88  */
89 extern void (*mbedtls_mutex_init)( mbedtls_threading_mutex_t *mutex );
90 extern void (*mbedtls_mutex_free)( mbedtls_threading_mutex_t *mutex );
91 extern int (*mbedtls_mutex_lock)( mbedtls_threading_mutex_t *mutex );
92 extern int (*mbedtls_mutex_unlock)( mbedtls_threading_mutex_t *mutex );
93 
94 /*
95  * Global mutexes
96  */
97 extern mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex;
98 extern mbedtls_threading_mutex_t mbedtls_threading_gmtime_mutex;
99 
100 #ifdef __cplusplus
101 }
102 #endif
103 
104 #endif /* threading.h */
mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex
int(* mbedtls_mutex_unlock)(mbedtls_threading_mutex_t *mutex)
Compatibility names (set of defines)
mbedtls_threading_mutex_t mbedtls_threading_gmtime_mutex
void(* mbedtls_mutex_init)(mbedtls_threading_mutex_t *mutex)
void(* mbedtls_mutex_free)(mbedtls_threading_mutex_t *mutex)
int(* mbedtls_mutex_lock)(mbedtls_threading_mutex_t *mutex)