mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
162 B
7 lines
162 B
#include "pthread_impl.h"
|
|
|
|
int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *restrict a, int *restrict pshared)
|
|
{
|
|
*pshared = *(int *)a;
|
|
return 0;
|
|
}
|
|
|