1193267Sjkim/*	$NetBSD: sched.c,v 1.6 2018/01/04 20:57:29 kamil Exp $	*/
2193267Sjkim
3193267Sjkim/*
4193267Sjkim * Copyright (c) 2008, Mindaugas Rasiukevicius <rmind at NetBSD org>
5193267Sjkim * All rights reserved.
6193267Sjkim *
7217365Sjkim * Redistribution and use in source and binary forms, with or without
8306536Sjkim * modification, are permitted provided that the following conditions
9193267Sjkim * are met:
10193267Sjkim * 1. Redistributions of source code must retain the above copyright
11217365Sjkim *    notice, this list of conditions and the following disclaimer.
12217365Sjkim * 2. Redistributions in binary form must reproduce the above copyright
13217365Sjkim *    notice, this list of conditions and the following disclaimer in the
14217365Sjkim *    documentation and/or other materials provided with the distribution.
15217365Sjkim *
16217365Sjkim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17217365Sjkim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18217365Sjkim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19217365Sjkim * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20217365Sjkim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21217365Sjkim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22217365Sjkim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23217365Sjkim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24217365Sjkim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25193267Sjkim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26217365Sjkim * SUCH DAMAGE.
27217365Sjkim */
28217365Sjkim
29193267Sjkim#include <sys/cdefs.h>
30217365Sjkim__RCSID("$NetBSD: sched.c,v 1.6 2018/01/04 20:57:29 kamil Exp $");
31217365Sjkim
32217365Sjkim#include "namespace.h"
33217365Sjkim#include <string.h>
34217365Sjkim#include <unistd.h>
35217365Sjkim#include <errno.h>
36217365Sjkim#include <sched.h>
37217365Sjkim#include <signal.h>
38217365Sjkim#include <sys/param.h>
39217365Sjkim#include <sys/types.h>
40217365Sjkim
41217365Sjkim/* All LWPs in the process */
42217365Sjkim#define	P_ALL_LWPS		0
43193267Sjkim
44193267Sjkim/*
45193267Sjkim * Scheduling parameters.
46193267Sjkim */
47193267Sjkim
48193267Sjkimint
49193267Sjkimsched_setparam(pid_t pid, const struct sched_param *param)
50193267Sjkim{
51193267Sjkim	struct sched_param sp;
52193267Sjkim
53193267Sjkim	memset(&sp, 0, sizeof(struct sched_param));
54193341Sjkim	sp.sched_priority = param->sched_priority;
55193341Sjkim	return _sched_setparam(pid, P_ALL_LWPS, SCHED_NONE, &sp);
56193341Sjkim}
57193341Sjkim
58193341Sjkimint
59193341Sjkimsched_getparam(pid_t pid, struct sched_param *param)
60193341Sjkim{
61193341Sjkim
62306536Sjkim	return _sched_getparam(pid, P_ALL_LWPS, NULL, param);
63306536Sjkim}
64306536Sjkim
65193267Sjkimint
66193267Sjkimsched_setscheduler(pid_t pid, int policy, const struct sched_param *param)
67193267Sjkim{
68	struct sched_param sp;
69	int ret, old_policy;
70
71	ret = _sched_getparam(pid, P_ALL_LWPS, &old_policy, &sp);
72	if (ret < 0)
73		return ret;
74
75	memset(&sp, 0, sizeof(struct sched_param));
76	sp.sched_priority = param->sched_priority;
77	ret = _sched_setparam(pid, P_ALL_LWPS, policy, &sp);
78	if (ret < 0)
79		return ret;
80
81	return old_policy;
82}
83
84int
85sched_getscheduler(pid_t pid)
86{
87	struct sched_param sp;
88	int ret, policy;
89
90	ret = _sched_getparam(pid, P_ALL_LWPS, &policy, &sp);
91	if (ret < 0)
92		return ret;
93
94	return policy;
95}
96
97/*
98 * Scheduling priorities.
99 */
100
101int
102sched_get_priority_max(int policy)
103{
104
105	switch (policy) {
106	case SCHED_OTHER:
107		return PRI_NONE;
108	case SCHED_RR:
109	case SCHED_FIFO:
110		return (int)sysconf(_SC_SCHED_PRI_MAX);
111	default:
112		errno = EINVAL;
113		return -1;
114	}
115}
116
117int
118sched_get_priority_min(int policy)
119{
120
121	switch (policy) {
122	case SCHED_OTHER:
123		return PRI_NONE;
124	case SCHED_RR:
125	case SCHED_FIFO:
126		return (int)sysconf(_SC_SCHED_PRI_MIN);
127	default:
128		errno = EINVAL;
129		return -1;
130	}
131}
132
133int
134/*ARGSUSED*/
135sched_rr_get_interval(pid_t pid, struct timespec *interval)
136{
137
138	if (pid && kill(pid, 0) == -1)
139		return -1;
140	interval->tv_sec = 0;
141	interval->tv_nsec = sysconf(_SC_SCHED_RT_TS) * 1000;
142	return 0;
143}
144
145/*
146 * Process affinity.
147 */
148
149int
150sched_getaffinity_np(pid_t pid, size_t size, cpuset_t *cpuset)
151{
152
153	return _sched_getaffinity(pid, P_ALL_LWPS, size, cpuset);
154}
155
156int
157sched_setaffinity_np(pid_t pid, size_t size, cpuset_t *cpuset)
158{
159
160	return _sched_setaffinity(pid, P_ALL_LWPS, size, cpuset);
161}
162