VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/netbsd/thread2-r0drv-netbsd.c@ 76452

最後變更 在這個檔案從76452是 76452,由 vboxsync 提交於 6 年 前

IPRT: Ran scm --fix-err-h. bugref:9344

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 3.9 KB
 
1/* $Id: thread2-r0drv-netbsd.c 76452 2018-12-25 01:41:25Z vboxsync $ */
2/** @file
3 * IPRT - Threads (Part 2), Ring-0 Driver, NetBSD.
4 */
5
6/*
7 * Copyright (c) 2007 knut st. osmundsen <[email protected]>
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
32/*********************************************************************************************************************************
33* Header Files *
34*********************************************************************************************************************************/
35#include "the-netbsd-kernel.h"
36
37#include <iprt/thread.h>
38#include <iprt/errcore.h>
39#include <iprt/assert.h>
40
41#include "internal/thread.h"
42
43
44DECLHIDDEN(int) rtThreadNativeInit(void)
45{
46 return VINF_SUCCESS;
47}
48
49
50RTDECL(RTTHREAD) RTThreadSelf(void)
51{
52 return rtThreadGetByNative(RTThreadNativeSelf());
53}
54
55
56DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)
57{
58 int iPriority;
59
60 switch (enmType)
61 {
62 case RTTHREADTYPE_INFREQUENT_POLLER: iPriority = PZERO + 8; break;
63 case RTTHREADTYPE_EMULATION: iPriority = PZERO + 4; break;
64 case RTTHREADTYPE_DEFAULT: iPriority = PZERO; break;
65 case RTTHREADTYPE_MSG_PUMP: iPriority = PZERO - 4; break;
66 case RTTHREADTYPE_IO: iPriority = PRIBIO; break;
67 case RTTHREADTYPE_TIMER: iPriority = PSWP; break;
68 default:
69 AssertMsgFailed(("enmType=%d\n", enmType));
70 return VERR_INVALID_PARAMETER;
71 }
72
73 lwp_lock(curlwp);
74 lwp_changepri(curlwp, iPriority);
75 lwp_unlock(curlwp);
76
77 return VINF_SUCCESS;
78}
79
80
81DECLHIDDEN(int) rtThreadNativeAdopt(PRTTHREADINT pThread)
82{
83 NOREF(pThread);
84 /* There is nothing special that needs doing here, but the
85 user really better know what he's cooking. */
86 return VINF_SUCCESS;
87}
88
89
90DECLHIDDEN(void) rtThreadNativeWaitKludge(PRTTHREADINT pThread)
91{
92 /** @todo fix RTThreadWait/RTR0Term race on netbsd. */
93 RTThreadSleep(1);
94}
95
96
97DECLHIDDEN(void) rtThreadNativeDestroy(PRTTHREADINT pThread)
98{
99 NOREF(pThread);
100}
101
102
103/**
104 * Native thread main function.
105 *
106 * @param pvThreadInt The thread structure.
107 */
108static void rtThreadNativeMain(void *pvThreadInt)
109{
110 const struct lwp *Self = curlwp;
111 PRTTHREADINT pThreadInt = (PRTTHREADINT)pvThreadInt;
112 int rc;
113
114 rc = rtThreadMain(pThreadInt, (RTNATIVETHREAD)Self, &pThreadInt->szName[0]);
115
116 kthread_exit(rc);
117}
118
119
120DECLHIDDEN(int) rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread)
121{
122 int rc;
123 struct lwp *l;
124
125 rc = kthread_create(PRI_NONE, 0, NULL, rtThreadNativeMain, (void *)pThreadInt, &l, "%s", pThreadInt->szName);
126
127 if (!rc)
128 {
129 *pNativeThread = (RTNATIVETHREAD)l;
130 rc = VINF_SUCCESS;
131 }
132 else
133 rc = RTErrConvertFromErrno(rc);
134 return rc;
135}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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