1570af302Sopenharmony_ci#include "pthread_impl.h" 2570af302Sopenharmony_ci 3570af302Sopenharmony_ciint pthread_mutex_init(pthread_mutex_t *restrict m, const pthread_mutexattr_t *restrict a) 4570af302Sopenharmony_ci{ 5570af302Sopenharmony_ci __builtin_memset(m, 0, sizeof(pthread_mutex_t)); 6570af302Sopenharmony_ci if (a) m->_m_type = a->__attr; 7570af302Sopenharmony_ci return 0; 8570af302Sopenharmony_ci} 9