Add PTHREAD_MUTEX_INITIALIZER

This commit is contained in:
kinichiro 2020-09-13 12:55:02 +09:00
parent 4f01b43cfe
commit 65b01cff7a

View File

@ -15,6 +15,11 @@
*/ */
#define PTHREAD_ONCE_INIT { INIT_ONCE_STATIC_INIT } #define PTHREAD_ONCE_INIT { INIT_ONCE_STATIC_INIT }
/*
* Static mutex initialization values.
*/
#define PTHREAD_MUTEX_INITIALIZER { 0, 0, 0, 0, 0, 0 }
/* /*
* Once definitions. * Once definitions.
*/ */