mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 12:05:36 +01:00
threading_set_own() renamed to threading_set_alt()
This commit is contained in:
parent
4aa40d4f51
commit
b7c13123de
@ -15,6 +15,7 @@ Bugfix
|
|||||||
* Const correctness
|
* Const correctness
|
||||||
* Possible naming collision in dhm_context
|
* Possible naming collision in dhm_context
|
||||||
* Better support for MSVC
|
* Better support for MSVC
|
||||||
|
* threading_set_alt() name
|
||||||
|
|
||||||
= PolarSSL-1.3.0 released on 2013-10-01
|
= PolarSSL-1.3.0 released on 2013-10-01
|
||||||
Features
|
Features
|
||||||
|
@ -117,7 +117,7 @@ int (*polarssl_mutex_free)( threading_mutex_t * ) = NULL;
|
|||||||
int (*polarssl_mutex_lock)( threading_mutex_t * ) = NULL;
|
int (*polarssl_mutex_lock)( threading_mutex_t * ) = NULL;
|
||||||
int (*polarssl_mutex_unlock)( threading_mutex_t * ) = NULL;
|
int (*polarssl_mutex_unlock)( threading_mutex_t * ) = NULL;
|
||||||
|
|
||||||
int threading_set_own( int (*mutex_init)( threading_mutex_t * ),
|
int threading_set_alt( int (*mutex_init)( threading_mutex_t * ),
|
||||||
int (*mutex_free)( threading_mutex_t * ),
|
int (*mutex_free)( threading_mutex_t * ),
|
||||||
int (*mutex_lock)( threading_mutex_t * ),
|
int (*mutex_lock)( threading_mutex_t * ),
|
||||||
int (*mutex_unlock)( threading_mutex_t * ) )
|
int (*mutex_unlock)( threading_mutex_t * ) )
|
||||||
|
Loading…
Reference in New Issue
Block a user