VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/solaris/thread-r0drv-solaris.c@ 22437

Last change on this file since 22437 was 22437, checked in by vboxsync, 16 years ago

thread-r0drv-solaris.c: sys/spl.h already in the-solaris-kernel.h

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/* $Id: thread-r0drv-solaris.c 22437 2009-08-25 14:32:22Z vboxsync $ */
2/** @file
3 * IPRT - Threads, Ring-0 Driver, Solaris.
4 */
5
6/*
7 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include "the-solaris-kernel.h"
36#include "internal/iprt.h"
37#include <iprt/thread.h>
38
39#include <iprt/asm.h>
40#include <iprt/assert.h>
41#include <iprt/err.h>
42#include <iprt/mp.h>
43
44
45RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void)
46{
47 return (RTNATIVETHREAD)curthread;
48}
49
50
51RTDECL(int) RTThreadSleep(unsigned cMillies)
52{
53 clock_t cTicks;
54 unsigned long timeout;
55 RT_ASSERT_PREEMPTIBLE();
56
57 if (!cMillies)
58 {
59 RTThreadYield();
60 return VINF_SUCCESS;
61 }
62
63 if (cMillies != RT_INDEFINITE_WAIT)
64 cTicks = drv_usectohz((clock_t)(cMillies * 1000L));
65 else
66 cTicks = 0;
67
68#if 0
69 timeout = ddi_get_lbolt();
70 timeout += cTicks;
71
72 kcondvar_t cnd;
73 kmutex_t mtx;
74 mutex_init(&mtx, "IPRT Sleep Mutex", MUTEX_DRIVER, NULL);
75 cv_init(&cnd, "IPRT Sleep CV", CV_DRIVER, NULL);
76 mutex_enter(&mtx);
77 cv_timedwait (&cnd, &mtx, timeout);
78 mutex_exit(&mtx);
79 cv_destroy(&cnd);
80 mutex_destroy(&mtx);
81#endif
82
83#if 1
84 delay(cTicks);
85#endif
86
87#if 0
88 /* Hmm, no same effect as using delay() */
89 struct timespec t;
90 t.tv_sec = 0;
91 t.tv_nsec = cMillies * 1000000L;
92 nanosleep (&t, NULL);
93#endif
94
95 return VINF_SUCCESS;
96}
97
98
99RTDECL(bool) RTThreadYield(void)
100{
101 RT_ASSERT_PREEMPTIBLE();
102 schedctl_set_yield(curthread, 0); /** @todo this is incomplete/wrong. */
103 return true;
104}
105
106
107RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread)
108{
109 Assert(hThread == NIL_RTTHREAD);
110 if (curthread->t_preempt != 0)
111 return false;
112 if (!ASMIntAreEnabled())
113 return false;
114 if (getpil() >= DISP_LEVEL)
115 return false;
116 return true;
117}
118
119
120RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread)
121{
122 Assert(hThread == NIL_RTTHREAD);
123 return CPU->cpu_runrun != 0
124 || CPU->cpu_kprunrun != 0;
125}
126
127
128RTDECL(bool) RTThreadPreemptIsPendingTrusty(void)
129{
130 /* yes, RTThreadPreemptIsPending is reliable. */
131 return true;
132}
133
134
135RTDECL(bool) RTThreadPreemptIsPossible(void)
136{
137 /* yes, kernel preemption is possible. */
138 return true;
139}
140
141
142RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState)
143{
144 AssertPtr(pState);
145 Assert(pState->uOldPil == UINT32_MAX);
146
147 kpreempt_disable();
148/// @todo check out splr and splx on S10!
149// if (ASMIntAreEnabled())
150 pState->uOldPil = splr(ipltospl(DISP_LEVEL));
151// else
152// {
153// /* splr doesn't restore the interrupt flag on S10. */
154// pState->uOldPil = getpil();
155// if (pState->uOldPil < DISP_LEVEL)
156// pState->uOldPil = splx(DISP_LEVEL);
157// }
158 Assert(pState->uOldPil != UINT32_MAX);
159 RT_ASSERT_PREEMPT_CPUID_DISABLE(pState);
160}
161
162
163RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState)
164{
165 AssertPtr(pState);
166 Assert(pState->uOldPil != UINT32_MAX);
167 RT_ASSERT_PREEMPT_CPUID_RESTORE(pState);
168
169 kpreempt_enable();
170 splx(pState->uOldPil);
171
172 pState->uOldPil = UINT32_MAX;
173}
174
175
176RTDECL(bool) RTThreadIsInInterrupt(RTTHREAD hThread)
177{
178 /** @todo it looks like checking for spl > LOCK_LEVEL and interrupts disabled
179 * is more accurate than this... */
180 /* This is the best we currently can do here. :-( */
181 return !RTThreadPreemptIsEnabled(hThread)
182 && getpil() > 0;
183}
184
Note: See TracBrowser for help on using the repository browser.

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