summaryrefslogtreecommitdiff
path: root/lib/libpthread/uthread/uthread_attr_priosched.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libpthread/uthread/uthread_attr_priosched.c')
-rw-r--r--lib/libpthread/uthread/uthread_attr_priosched.c82
1 files changed, 82 insertions, 0 deletions
diff --git a/lib/libpthread/uthread/uthread_attr_priosched.c b/lib/libpthread/uthread/uthread_attr_priosched.c
new file mode 100644
index 00000000000..cc415768165
--- /dev/null
+++ b/lib/libpthread/uthread/uthread_attr_priosched.c
@@ -0,0 +1,82 @@
+/*
+ * David Leonard <d@openbsd.org>, 1998. Public Domain.
+ *
+ * $OpenBSD: uthread_attr_priosched.c,v 1.1 1999/01/18 00:06:56 d Exp $
+ */
+#include <errno.h>
+#ifdef _THREAD_SAFE
+#include <pthread.h>
+#include "pthread_private.h"
+
+int
+pthread_attr_setscope(attr, contentionscope)
+ pthread_attr_t *attr;
+ int contentionscope;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_getscope(attr, contentionscope)
+ const pthread_attr_t *attr;
+ int *contentionscope;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_setinheritsched(attr, inheritsched)
+ pthread_attr_t *attr;
+ int inheritsched;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_getinheritsched(attr, inheritsched)
+ const pthread_attr_t *attr;
+ int *inheritsched;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_setschedpolicy(attr, policy)
+ pthread_attr_t *attr;
+ int policy;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_getschedpolicy(attr, policy)
+ const pthread_attr_t *attr;
+ int *policy;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_setschedparam(attr, param)
+ pthread_attr_t *attr;
+ const struct sched_param *param;
+{
+
+ return (ENOSYS);
+}
+
+int
+pthread_attr_getschedparam(attr, param)
+ const pthread_attr_t *attr;
+ struct sched_param *param;
+{
+
+ return (ENOSYS);
+}
+#endif