summaryrefslogtreecommitdiff
path: root/lib/libpthread/uthread/uthread_attr_priosched.c
blob: cc4157681656a3d4e0637553dc1e1c6b7d1483e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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