mirror of
https://github.com/fluencelabs/musl
synced 2025-07-01 23:52:02 +00:00
8 lines
144 B
C
8 lines
144 B
C
![]() |
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *a, int *pshared)
|
||
|
{
|
||
|
*pshared = *(int *)a;
|
||
|
return 0;
|
||
|
}
|