1 | /* $Id: thread-r0drv-netbsd.c 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Threads (Part 1), Ring-0 Driver, NetBSD.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Contributed by knut st. osmundsen.
|
---|
8 | *
|
---|
9 | * Copyright (C) 2007-2024 Oracle and/or its affiliates.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox base platform packages, as
|
---|
12 | * available from https://www.virtualbox.org.
|
---|
13 | *
|
---|
14 | * This program is free software; you can redistribute it and/or
|
---|
15 | * modify it under the terms of the GNU General Public License
|
---|
16 | * as published by the Free Software Foundation, in version 3 of the
|
---|
17 | * License.
|
---|
18 | *
|
---|
19 | * This program is distributed in the hope that it will be useful, but
|
---|
20 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
22 | * General Public License for more details.
|
---|
23 | *
|
---|
24 | * You should have received a copy of the GNU General Public License
|
---|
25 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
26 | *
|
---|
27 | * The contents of this file may alternatively be used under the terms
|
---|
28 | * of the Common Development and Distribution License Version 1.0
|
---|
29 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
30 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
31 | * CDDL are applicable instead of those of the GPL.
|
---|
32 | *
|
---|
33 | * You may elect to license modified versions of this file under the
|
---|
34 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
35 | *
|
---|
36 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
37 | */
|
---|
38 |
|
---|
39 |
|
---|
40 | /*********************************************************************************************************************************
|
---|
41 | * Header Files *
|
---|
42 | *********************************************************************************************************************************/
|
---|
43 | #include "the-netbsd-kernel.h"
|
---|
44 | #include "internal/iprt.h"
|
---|
45 | #include <iprt/thread.h>
|
---|
46 |
|
---|
47 | #include <iprt/asm.h>
|
---|
48 | #include <iprt/asm-amd64-x86.h>
|
---|
49 | #include <iprt/assert.h>
|
---|
50 | #include <iprt/err.h>
|
---|
51 | #include <iprt/mp.h>
|
---|
52 | #include "internal/thread.h"
|
---|
53 |
|
---|
54 |
|
---|
55 | RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void)
|
---|
56 | {
|
---|
57 | return (RTNATIVETHREAD)curlwp;
|
---|
58 | }
|
---|
59 |
|
---|
60 |
|
---|
61 | static int rtR0ThreadNbsdSleepCommon(RTMSINTERVAL cMillies)
|
---|
62 | {
|
---|
63 | int rc;
|
---|
64 | int cTicks;
|
---|
65 |
|
---|
66 | /*
|
---|
67 | * 0 ms sleep -> yield.
|
---|
68 | */
|
---|
69 | if (!cMillies)
|
---|
70 | {
|
---|
71 | RTThreadYield();
|
---|
72 | return VINF_SUCCESS;
|
---|
73 | }
|
---|
74 |
|
---|
75 | /*
|
---|
76 | * Translate milliseconds into ticks and go to sleep.
|
---|
77 | */
|
---|
78 | if (cMillies != RT_INDEFINITE_WAIT)
|
---|
79 | {
|
---|
80 | if (hz == 1000)
|
---|
81 | cTicks = cMillies;
|
---|
82 | else if (hz == 100)
|
---|
83 | cTicks = cMillies / 10;
|
---|
84 | else
|
---|
85 | {
|
---|
86 | int64_t cTicks64 = ((uint64_t)cMillies * hz) / 1000;
|
---|
87 | cTicks = (int)cTicks64;
|
---|
88 | if (cTicks != cTicks64)
|
---|
89 | cTicks = INT_MAX;
|
---|
90 | }
|
---|
91 | }
|
---|
92 | else
|
---|
93 | cTicks = 0; /* requires giant lock! */
|
---|
94 |
|
---|
95 | rc = tsleep((void *)RTThreadSleep,
|
---|
96 | PZERO | PCATCH,
|
---|
97 | "iprtsl", /* max 6 chars */
|
---|
98 | cTicks);
|
---|
99 | switch (rc)
|
---|
100 | {
|
---|
101 | case 0:
|
---|
102 | return VINF_SUCCESS;
|
---|
103 | case EWOULDBLOCK:
|
---|
104 | return VERR_TIMEOUT;
|
---|
105 | case EINTR:
|
---|
106 | case ERESTART:
|
---|
107 | return VERR_INTERRUPTED;
|
---|
108 | default:
|
---|
109 | AssertMsgFailed(("%d\n", rc));
|
---|
110 | return VERR_NO_TRANSLATION;
|
---|
111 | }
|
---|
112 | }
|
---|
113 |
|
---|
114 |
|
---|
115 | RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies)
|
---|
116 | {
|
---|
117 | return rtR0ThreadNbsdSleepCommon(cMillies);
|
---|
118 | }
|
---|
119 |
|
---|
120 |
|
---|
121 | RTDECL(int) RTThreadSleepNoLog(RTMSINTERVAL cMillies)
|
---|
122 | {
|
---|
123 | return rtR0ThreadNbsdSleepCommon(cMillies);
|
---|
124 | }
|
---|
125 |
|
---|
126 |
|
---|
127 | RTDECL(bool) RTThreadYield(void)
|
---|
128 | {
|
---|
129 | yield();
|
---|
130 | return true;
|
---|
131 | }
|
---|
132 |
|
---|
133 |
|
---|
134 | RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread)
|
---|
135 | {
|
---|
136 | Assert(hThread == NIL_RTTHREAD);
|
---|
137 |
|
---|
138 | return curlwp->l_dopreempt == 0
|
---|
139 | && ASMIntAreEnabled(); /** @todo is there a native netbsd function/macro for this? */
|
---|
140 | }
|
---|
141 |
|
---|
142 |
|
---|
143 | RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread)
|
---|
144 | {
|
---|
145 | Assert(hThread == NIL_RTTHREAD);
|
---|
146 |
|
---|
147 | return curlwp->l_dopreempt;
|
---|
148 | }
|
---|
149 |
|
---|
150 |
|
---|
151 | RTDECL(bool) RTThreadPreemptIsPendingTrusty(void)
|
---|
152 | {
|
---|
153 | /* yes, RTThreadPreemptIsPending is reliable. */
|
---|
154 | return true;
|
---|
155 | }
|
---|
156 |
|
---|
157 |
|
---|
158 | RTDECL(bool) RTThreadPreemptIsPossible(void)
|
---|
159 | {
|
---|
160 | /* yes, kernel preemption is possible. */
|
---|
161 | return true;
|
---|
162 | }
|
---|
163 |
|
---|
164 |
|
---|
165 | RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState)
|
---|
166 | {
|
---|
167 | AssertPtr(pState);
|
---|
168 |
|
---|
169 | curlwp->l_nopreempt++;
|
---|
170 | __insn_barrier();
|
---|
171 | }
|
---|
172 |
|
---|
173 |
|
---|
174 | RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState)
|
---|
175 | {
|
---|
176 | AssertPtr(pState);
|
---|
177 | __insn_barrier();
|
---|
178 | if (--curlwp->l_nopreempt != 0)
|
---|
179 | return;
|
---|
180 | __insn_barrier();
|
---|
181 | if (__predict_false(curlwp->l_dopreempt))
|
---|
182 | kpreempt(0);
|
---|
183 | __insn_barrier();
|
---|
184 | }
|
---|
185 |
|
---|
186 |
|
---|
187 | RTDECL(bool) RTThreadIsInInterrupt(RTTHREAD hThread)
|
---|
188 | {
|
---|
189 | Assert(hThread == NIL_RTTHREAD); NOREF(hThread);
|
---|
190 | /** @todo NetBSD: Implement RTThreadIsInInterrupt. Required for guest
|
---|
191 | * additions! */
|
---|
192 | return !ASMIntAreEnabled();
|
---|
193 | }
|
---|