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