VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/haiku/thread2-r0drv-haiku.c@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1/* $Id: thread2-r0drv-haiku.c 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * IPRT - Threads (Part 2), Ring-0 Driver, Haiku.
4 */
5
6/*
7 * Copyright (C) 2012-2022 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 "internal/thread.h"
41
42
43DECLHIDDEN(int) rtThreadNativeInit(void)
44{
45 /* No TLS in Ring-0. :-/ */
46 return VINF_SUCCESS;
47}
48
49
50RTDECL(RTTHREAD) RTThreadSelf(void)
51{
52 return rtThreadGetByNative((RTNATIVETHREAD)find_thread(NULL));
53}
54
55
56DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
57{
58 int32 iPriority;
59 status_t status;
60
61 /*
62 * Convert the priority type to native priorities.
63 * (This is quite naive but should be ok.)
64 */
65 switch (enmType)
66 {
67 case RTTHREADTYPE_INFREQUENT_POLLER: iPriority = B_LOWEST_ACTIVE_PRIORITY; break;
68 case RTTHREADTYPE_EMULATION: iPriority = B_LOW_PRIORITY; break;
69 case RTTHREADTYPE_DEFAULT: iPriority = B_NORMAL_PRIORITY; break;
70 case RTTHREADTYPE_MSG_PUMP: iPriority = B_DISPLAY_PRIORITY; break;
71 case RTTHREADTYPE_IO: iPriority = B_URGENT_DISPLAY_PRIORITY; break;
72 case RTTHREADTYPE_TIMER: iPriority = B_REAL_TIME_DISPLAY_PRIORITY; break;
73 default:
74 AssertMsgFailed(("enmType=%d\n", enmType));
75 return VERR_INVALID_PARAMETER;
76 }
77
78 status = set_thread_priority((thread_id)pThread->Core.Key, iPriority);
79
80 return RTErrConvertFromHaikuKernReturn(status);
81}
82
83
84DECLHIDDEN(int) rtThreadNativeAdopt(PRTTHREADINT pThread)
85{
86 return VERR_NOT_IMPLEMENTED;
87}
88
89
90DECLHIDDEN(void) rtThreadNativeWaitKludge(PRTTHREADINT pThread)
91{
92 /** @todo fix RTThreadWait/RTR0Term race on freebsd. */
93 RTThreadSleep(1);
94}
95
96
97DECLHIDDEN(void) rtThreadNativeDestroy(PRTTHREADINT pThread)
98{
99 NOREF(pThread);
100}
101
102
103/**
104 * Native kernel thread wrapper function.
105 *
106 * This will forward to rtThreadMain and do termination upon return.
107 *
108 * @param pvArg Pointer to the argument package.
109 * @param Ignored Wait result, which we ignore.
110 */
111static status_t rtThreadNativeMain(void *pvArg)
112{
113 const thread_id Self = find_thread(NULL);
114 PRTTHREADINT pThread = (PRTTHREADINT)pvArg;
115
116 int rc = rtThreadMain(pThread, (RTNATIVETHREAD)Self, &pThread->szName[0]);
117
118 if (rc < 0)
119 return RTErrConvertFromHaikuKernReturn(rc);
120 return rc;
121}
122
123
124DECLHIDDEN(int) rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread)
125{
126 thread_id NativeThread;
127 RT_ASSERT_PREEMPTIBLE();
128
129 NativeThread = spawn_kernel_thread(rtThreadNativeMain, pThreadInt->szName, B_NORMAL_PRIORITY, pThreadInt);
130 if (NativeThread >= B_OK)
131 {
132 resume_thread(NativeThread);
133 *pNativeThread = (RTNATIVETHREAD)NativeThread;
134 return VINF_SUCCESS;
135 }
136 return RTErrConvertFromHaikuKernReturn(NativeThread);
137}
138
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette