1 | /* $Id: thread-r0drv-haiku.c 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Threads, Ring-0 Driver, Haiku.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include "the-haiku-kernel.h"
|
---|
42 | #include "internal/iprt.h"
|
---|
43 | #include <iprt/thread.h>
|
---|
44 |
|
---|
45 | #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
|
---|
46 | #include <iprt/asm-amd64-x86.h>
|
---|
47 | #endif
|
---|
48 | #include <iprt/assert.h>
|
---|
49 | #include <iprt/errcore.h>
|
---|
50 | #include <iprt/mp.h>
|
---|
51 |
|
---|
52 |
|
---|
53 | RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void)
|
---|
54 | {
|
---|
55 | return (RTNATIVETHREAD)find_thread(NULL);
|
---|
56 | }
|
---|
57 |
|
---|
58 |
|
---|
59 | RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies)
|
---|
60 | {
|
---|
61 | RT_ASSERT_PREEMPTIBLE();
|
---|
62 | snooze((bigtime_t)cMillies * 1000);
|
---|
63 | return VINF_SUCCESS;
|
---|
64 | }
|
---|
65 |
|
---|
66 |
|
---|
67 | RTDECL(bool) RTThreadYield(void)
|
---|
68 | {
|
---|
69 | RT_ASSERT_PREEMPTIBLE();
|
---|
70 | //FIXME
|
---|
71 | //snooze(0);
|
---|
72 | thread_yield(true);
|
---|
73 | return true; /* this is fishy */
|
---|
74 | }
|
---|
75 |
|
---|
76 |
|
---|
77 | RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread)
|
---|
78 | {
|
---|
79 | Assert(hThread == NIL_RTTHREAD);
|
---|
80 |
|
---|
81 | //XXX: can't do this, it might actually be held by another cpu
|
---|
82 | //return !B_SPINLOCK_IS_LOCKED(&gThreadSpinlock);
|
---|
83 | return ASMIntAreEnabled(); /** @todo find a better way. */
|
---|
84 | }
|
---|
85 |
|
---|
86 |
|
---|
87 | RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread)
|
---|
88 | {
|
---|
89 | Assert(hThread == NIL_RTTHREAD);
|
---|
90 | /** @todo check if Thread::next_priority or
|
---|
91 | * cpu_ent::invoke_scheduler could do. */
|
---|
92 | return false;
|
---|
93 | }
|
---|
94 |
|
---|
95 |
|
---|
96 | RTDECL(bool) RTThreadPreemptIsPendingTrusty(void)
|
---|
97 | {
|
---|
98 | /* RTThreadPreemptIsPending is not reliable yet. */
|
---|
99 | return false;
|
---|
100 | }
|
---|
101 |
|
---|
102 |
|
---|
103 | RTDECL(bool) RTThreadPreemptIsPossible(void)
|
---|
104 | {
|
---|
105 | /* yes, kernel preemption is possible. */
|
---|
106 | return true;
|
---|
107 | }
|
---|
108 |
|
---|
109 |
|
---|
110 | RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState)
|
---|
111 | {
|
---|
112 | AssertPtr(pState);
|
---|
113 | Assert(pState->uOldCpuState == 0);
|
---|
114 |
|
---|
115 | pState->uOldCpuState = (uint32_t)disable_interrupts();
|
---|
116 | RT_ASSERT_PREEMPT_CPUID_DISABLE(pState);
|
---|
117 | }
|
---|
118 |
|
---|
119 |
|
---|
120 | RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState)
|
---|
121 | {
|
---|
122 | AssertPtr(pState);
|
---|
123 |
|
---|
124 | RT_ASSERT_PREEMPT_CPUID_RESTORE(pState);
|
---|
125 | restore_interrupts((cpu_status)pState->uOldCpuState);
|
---|
126 | pState->uOldCpuState = 0;
|
---|
127 | }
|
---|
128 |
|
---|
129 |
|
---|
130 | RTDECL(bool) RTThreadIsInInterrupt(RTTHREAD hThread)
|
---|
131 | {
|
---|
132 | Assert(hThread == NIL_RTTHREAD); NOREF(hThread);
|
---|
133 | /** @todo Implement RTThreadIsInInterrupt. Required for guest
|
---|
134 | * additions! */
|
---|
135 | return !ASMIntAreEnabled();
|
---|
136 | }
|
---|
137 |
|
---|