VirtualBox

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

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

iprt/solaris: A quick shot at RTThreadPreemptIsPending.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1/* $Id: thread-r0drv-solaris.c 19917 2009-05-22 16:59:17Z vboxsync $ */
2/** @file
3 * IPRT - Threads, Ring-0 Driver, Solaris.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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* Header Files *
33*******************************************************************************/
34#include "the-solaris-kernel.h"
35
36#include <iprt/thread.h>
37#include <iprt/err.h>
38#include <iprt/asm.h>
39#include <iprt/assert.h>
40
41
42RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void)
43{
44 return (RTNATIVETHREAD)curthread;
45}
46
47
48RTDECL(int) RTThreadSleep(unsigned cMillies)
49{
50 clock_t cTicks;
51 unsigned long timeout;
52
53 if (!cMillies)
54 {
55 RTThreadYield();
56 return VINF_SUCCESS;
57 }
58
59 if (cMillies != RT_INDEFINITE_WAIT)
60 cTicks = drv_usectohz((clock_t)(cMillies * 1000L));
61 else
62 cTicks = 0;
63
64#if 0
65 timeout = ddi_get_lbolt();
66 timeout += cTicks;
67
68 kcondvar_t cnd;
69 kmutex_t mtx;
70 mutex_init(&mtx, "IPRT Sleep Mutex", MUTEX_DRIVER, NULL);
71 cv_init(&cnd, "IPRT Sleep CV", CV_DRIVER, NULL);
72 mutex_enter(&mtx);
73 cv_timedwait (&cnd, &mtx, timeout);
74 mutex_exit(&mtx);
75 cv_destroy(&cnd);
76 mutex_destroy(&mtx);
77#endif
78
79#if 1
80 delay(cTicks);
81#endif
82
83#if 0
84 /* Hmm, no same effect as using delay() */
85 struct timespec t;
86 t.tv_sec = 0;
87 t.tv_nsec = cMillies * 1000000L;
88 nanosleep (&t, NULL);
89#endif
90
91 return VINF_SUCCESS;
92}
93
94
95RTDECL(bool) RTThreadYield(void)
96{
97 schedctl_set_yield(curthread, 0);
98 return true;
99}
100
101
102RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread)
103{
104 Assert(hThread == NIL_RTTHREAD);
105 if (curthread->t_preempt != 0)
106 return false;
107#if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64)
108 if (!(ASMGetFlags() & 0x00000200 /* X86_EFL_IF */))
109 return false;
110#endif
111 return true;
112}
113
114
115RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread)
116{
117 Assert(hThread == NIL_RTTHREAD);
118 /** @todo Review this! */
119 return CPU->cpu_runrun != 0
120 || CPU->cpu_kprunrun != 0;
121}
122
123
124RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState)
125{
126 AssertPtr(pState);
127 Assert(pState->uchDummy != 42);
128 pState->uchDummy = 42;
129
130 kpreempt_disable();
131}
132
133
134RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState)
135{
136 AssertPtr(pState);
137 Assert(pState->uchDummy == 42);
138 pState->uchDummy = 0;
139
140 kpreempt_enable();
141}
142
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