diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-07 16:43:25 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-07 16:43:25 -0500 |
commit | cc2e0b45a6fe7b0927519cc960fae8e4c0c0ebee (patch) | |
tree | ff18f47d8f384df0733b0ab84aef5601ff775959 /src/thread/pthread_rwlockattr_setpshared.c | |
parent | b4d40e44e36f28cf5a52e9f0c12e622c3baf1657 (diff) | |
download | musl-cc2e0b45a6fe7b0927519cc960fae8e4c0c0ebee.tar.gz musl-cc2e0b45a6fe7b0927519cc960fae8e4c0c0ebee.tar.xz musl-cc2e0b45a6fe7b0927519cc960fae8e4c0c0ebee.zip |
implement pthread_rwlockattr_* (essentially no-ops)
Diffstat (limited to 'src/thread/pthread_rwlockattr_setpshared.c')
-rw-r--r-- | src/thread/pthread_rwlockattr_setpshared.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_rwlockattr_setpshared.c b/src/thread/pthread_rwlockattr_setpshared.c new file mode 100644 index 00000000..1f47f093 --- /dev/null +++ b/src/thread/pthread_rwlockattr_setpshared.c @@ -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; +} |