VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/freebsd/thread2-r0drv-freebsd.c@ 57358

Last change on this file since 57358 was 57358, checked in by vboxsync, 9 years ago

*: scm cleanup run.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.5 KB
Line 
1/* $Id: thread2-r0drv-freebsd.c 57358 2015-08-14 15:16:38Z vboxsync $ */
2/** @file
3 * IPRT - Threads (Part 2), Ring-0 Driver, FreeBSD.
4 */
5
6/*
7 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
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-freebsd-kernel.h"
36
37#include <iprt/thread.h>
38#include <iprt/err.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 = PRI_MIN_KERN; break;
68 default:
69 AssertMsgFailed(("enmType=%d\n", enmType));
70 return VERR_INVALID_PARAMETER;
71 }
72
73#if __FreeBSD_version < 700000
74 /* Do like they're doing in subr_ntoskrnl.c... */
75 mtx_lock_spin(&sched_lock);
76#else
77 thread_lock(curthread);
78#endif
79 sched_prio(curthread, iPriority);
80#if __FreeBSD_version < 600000
81 curthread->td_base_pri = iPriority;
82#endif
83#if __FreeBSD_version < 700000
84 mtx_unlock_spin(&sched_lock);
85#else
86 thread_unlock(curthread);
87#endif
88
89 return VINF_SUCCESS;
90}
91
92
93DECLHIDDEN(int) rtThreadNativeAdopt(PRTTHREADINT pThread)
94{
95 NOREF(pThread);
96 /* There is nothing special that needs doing here, but the
97 user really better know what he's cooking. */
98 return VINF_SUCCESS;
99}
100
101
102DECLHIDDEN(void) rtThreadNativeWaitKludge(PRTTHREADINT pThread)
103{
104 /** @todo fix RTThreadWait/RTR0Term race on freebsd. */
105 RTThreadSleep(1);
106}
107
108
109DECLHIDDEN(void) rtThreadNativeDestroy(PRTTHREADINT pThread)
110{
111 NOREF(pThread);
112}
113
114
115/**
116 * Native thread main function.
117 *
118 * @param pvThreadInt The thread structure.
119 */
120static void rtThreadNativeMain(void *pvThreadInt)
121{
122 const struct thread *Self = curthread;
123 PRTTHREADINT pThreadInt = (PRTTHREADINT)pvThreadInt;
124 int rc;
125
126 rc = rtThreadMain(pThreadInt, (RTNATIVETHREAD)Self, &pThreadInt->szName[0]);
127
128#if __FreeBSD_version >= 800002
129 kproc_exit(rc);
130#else
131 kthread_exit(rc);
132#endif
133}
134
135
136DECLHIDDEN(int) rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread)
137{
138 int rc;
139 struct proc *pProc;
140
141#if __FreeBSD_version >= 800002
142 rc = kproc_create(rtThreadNativeMain, pThreadInt, &pProc, RFHIGHPID, 0, "%s", pThreadInt->szName);
143#else
144 rc = kthread_create(rtThreadNativeMain, pThreadInt, &pProc, RFHIGHPID, 0, "%s", pThreadInt->szName);
145#endif
146 if (!rc)
147 {
148 *pNativeThread = (RTNATIVETHREAD)FIRST_THREAD_IN_PROC(pProc);
149 rc = VINF_SUCCESS;
150 }
151 else
152 rc = RTErrConvertFromErrno(rc);
153 return rc;
154}
155
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