mirror of https://git.musl-libc.org/git/musl
4 changed files with 28 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||||
|
#include "pthread_impl.h" |
||||
|
|
||||
|
int pthread_rwlockattr_destroy(pthread_rwlockattr_t *a) |
||||
|
{ |
||||
|
return 0; |
||||
|
} |
||||
@ -0,0 +1,7 @@ |
|||||
|
#include "pthread_impl.h" |
||||
|
|
||||
|
int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *a, int *pshared) |
||||
|
{ |
||||
|
*pshared = *(int *)a; |
||||
|
return 0; |
||||
|
} |
||||
@ -0,0 +1,7 @@ |
|||||
|
#include "pthread_impl.h" |
||||
|
|
||||
|
int pthread_rwlockattr_init(pthread_rwlockattr_t *a) |
||||
|
{ |
||||
|
memset(a, 0, sizeof *a); |
||||
|
return 0; |
||||
|
} |
||||
@ -0,0 +1,8 @@ |
|||||
|
#include "pthread_impl.h" |
||||
|
|
||||
|
int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *a, int pshared) |
||||
|
{ |
||||
|
if (pshared > 1U) return EINVAL; |
||||
|
*(int *)a = pshared; |
||||
|
return 0; |
||||
|
} |
||||
Loading…
Reference in new issue