Do not define and initialize global mutexes on configurations that do not use them.

This commit is contained in:
Gergely Budai 2017-08-23 14:23:58 +02:00 committed by Andres Amaya Garcia
parent f3ada4adb0
commit 13f7fb372e
2 changed files with 16 additions and 0 deletions

View file

@ -96,8 +96,12 @@ extern int (*mbedtls_mutex_unlock)( mbedtls_threading_mutex_t *mutex );
/*
* Global mutexes
*/
#if defined(MBEDTLS_FS_IO)
extern mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex;
#endif
#if defined(MBEDTLS_HAVE_TIME_DATE)
extern mbedtls_threading_mutex_t mbedtls_threading_gmtime_mutex;
#endif
#endif /* MBEDTLS_THREADING_C */
#ifdef __cplusplus