1 | /* $Id: thread-r0drv-solaris.c 13262 2008-10-14 13:09:04Z 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 |
|
---|
42 | RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void)
|
---|
43 | {
|
---|
44 | return (RTNATIVETHREAD)curthread;
|
---|
45 | }
|
---|
46 |
|
---|
47 |
|
---|
48 | RTDECL(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 |
|
---|
95 | RTDECL(bool) RTThreadYield(void)
|
---|
96 | {
|
---|
97 | schedctl_set_yield(curthread, 0);
|
---|
98 | return true;
|
---|
99 | }
|
---|
100 |
|
---|
101 |
|
---|
102 | RTDECL(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 |
|
---|
115 | RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState)
|
---|
116 | {
|
---|
117 | AssertPtr(pState);
|
---|
118 | Assert(pState->uchDummy != 42);
|
---|
119 | pState->uchDummy = 42;
|
---|
120 |
|
---|
121 | kpreempt_disable();
|
---|
122 | }
|
---|
123 |
|
---|
124 |
|
---|
125 | RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState)
|
---|
126 | {
|
---|
127 | AssertPtr(pState);
|
---|
128 | Assert(pState->uchDummy == 42);
|
---|
129 | pState->uchDummy = 0;
|
---|
130 |
|
---|
131 | kpreempt_enable();
|
---|
132 | }
|
---|
133 |
|
---|