implement pthread_rwlockattr_* (essentially no-ops)
authorRich Felker <dalias@aerifal.cx>
Mon, 7 Mar 2011 21:43:25 +0000 (16:43 -0500)
committerRich Felker <dalias@aerifal.cx>
Mon, 7 Mar 2011 21:43:25 +0000 (16:43 -0500)
src/thread/pthread_rwlockattr_destroy.c [new file with mode: 0644]
src/thread/pthread_rwlockattr_getpshared.c [new file with mode: 0644]
src/thread/pthread_rwlockattr_init.c [new file with mode: 0644]
src/thread/pthread_rwlockattr_setpshared.c [new file with mode: 0644]

diff --git a/src/thread/pthread_rwlockattr_destroy.c b/src/thread/pthread_rwlockattr_destroy.c
new file mode 100644 (file)
index 0000000..fc8d611
--- /dev/null
@@ -0,0 +1,6 @@
+#include "pthread_impl.h"
+
+int pthread_rwlockattr_destroy(pthread_rwlockattr_t *a)
+{
+       return 0;
+}
diff --git a/src/thread/pthread_rwlockattr_getpshared.c b/src/thread/pthread_rwlockattr_getpshared.c
new file mode 100644 (file)
index 0000000..0217bf4
--- /dev/null
@@ -0,0 +1,7 @@
+#include "pthread_impl.h"
+
+int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *a, int *pshared)
+{
+       *pshared = *(int *)a;
+       return 0;
+}
diff --git a/src/thread/pthread_rwlockattr_init.c b/src/thread/pthread_rwlockattr_init.c
new file mode 100644 (file)
index 0000000..e0893d6
--- /dev/null
@@ -0,0 +1,7 @@
+#include "pthread_impl.h"
+
+int pthread_rwlockattr_init(pthread_rwlockattr_t *a)
+{
+       memset(a, 0, sizeof *a);
+       return 0;
+}
diff --git a/src/thread/pthread_rwlockattr_setpshared.c b/src/thread/pthread_rwlockattr_setpshared.c
new file mode 100644 (file)
index 0000000..1f47f09
--- /dev/null
@@ -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;
+}