mirror of
https://github.com/fluencelabs/musl
synced 2025-06-20 18:26:52 +00:00
implement robust mutexes
some of this code should be cleaned up, e.g. using macros for some of the bit flags, masks, etc. nonetheless, the code is believed to be working and correct at this point.
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
|
||||
{
|
||||
memset(m, 0, sizeof *m);
|
||||
if (a) m->_m_type = *a & 3;
|
||||
if (a) m->_m_type = *a & 7;
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user