xref: /freebsd/lib/libthr/thread/thr_kern.c (revision a3cf0ef5a295c885c895fabfd56470c0d1db322d)
1 /*
2  * Copyright (c) 2005 David Xu <davidxu@freebsd.org>
3  * Copyright (C) 2003 Daniel M. Eischen <deischen@freebsd.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice unmodified, this list of conditions, and the following
11  *    disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 
30 #include <sys/types.h>
31 #include <sys/signalvar.h>
32 #include <sys/rtprio.h>
33 #include <pthread.h>
34 
35 #include "thr_private.h"
36 
37 /*#define DEBUG_THREAD_KERN */
38 #ifdef DEBUG_THREAD_KERN
39 #define DBG_MSG		stdout_debug
40 #else
41 #define DBG_MSG(x...)
42 #endif
43 
44 /*
45  * This is called when the first thread (other than the initial
46  * thread) is created.
47  */
48 int
49 _thr_setthreaded(int threaded)
50 {
51 	if (((threaded == 0) ^ (__isthreaded == 0)) == 0)
52 		return (0);
53 
54 	__isthreaded = threaded;
55 	if (threaded != 0) {
56 		_thr_rtld_init();
57 	} else {
58 		_thr_rtld_fini();
59 	}
60 	return (0);
61 }
62 
63 void
64 _thr_assert_lock_level()
65 {
66 	PANIC("locklevel <= 0");
67 }
68 
69 int
70 _rtp_to_schedparam(const struct rtprio *rtp, int *policy,
71 	struct sched_param *param)
72 {
73 	switch(rtp->type) {
74 	case RTP_PRIO_REALTIME:
75 		*policy = SCHED_RR;
76 		param->sched_priority = RTP_PRIO_MAX - rtp->prio;
77 		break;
78 	case RTP_PRIO_FIFO:
79 		*policy = SCHED_FIFO;
80 		param->sched_priority = RTP_PRIO_MAX - rtp->prio;
81 		break;
82 	default:
83 		*policy = SCHED_OTHER;
84 		param->sched_priority = 0;
85 		break;
86 	}
87 	return (0);
88 }
89 
90 int
91 _schedparam_to_rtp(int policy, const struct sched_param *param,
92 	struct rtprio *rtp)
93 {
94 	switch(policy) {
95 	case SCHED_RR:
96 		rtp->type = RTP_PRIO_REALTIME;
97 		rtp->prio = RTP_PRIO_MAX - param->sched_priority;
98 		break;
99 	case SCHED_FIFO:
100 		rtp->type = RTP_PRIO_FIFO;
101 		rtp->prio = RTP_PRIO_MAX - param->sched_priority;
102 		break;
103 	case SCHED_OTHER:
104 	default:
105 		rtp->type = RTP_PRIO_NORMAL;
106 		rtp->prio = 0;
107 		break;
108 	}
109 	return (0);
110 }
111 
112 int
113 _thr_getscheduler(lwpid_t lwpid, int *policy, struct sched_param *param)
114 {
115 	struct rtprio rtp;
116 	int ret;
117 
118 	ret = rtprio_thread(RTP_LOOKUP, lwpid, &rtp);
119 	if (ret == -1)
120 		return (ret);
121 	_rtp_to_schedparam(&rtp, policy, param);
122 	return (0);
123 }
124 
125 int
126 _thr_setscheduler(lwpid_t lwpid, int policy, const struct sched_param *param)
127 {
128 	struct rtprio rtp;
129 
130 	_schedparam_to_rtp(policy, param, &rtp);
131 	return (rtprio_thread(RTP_SET, lwpid, &rtp));
132 }
133