VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/solaris/semfastmutex-r0drv-solaris.c@ 24873

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

iprt/r0drv/solaris: context assertions (RT_MORE_STRICT).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1/* $Id: semfastmutex-r0drv-solaris.c 22073 2009-08-07 15:26:56Z vboxsync $ */
2/** @file
3 * IPRT - Fast Mutex Semaphores, 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/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include "the-solaris-kernel.h"
36#include "internal/iprt.h"
37#include <iprt/semaphore.h>
38
39#include <iprt/asm.h>
40#include <iprt/assert.h>
41#include <iprt/err.h>
42#include <iprt/mem.h>
43#include <iprt/thread.h>
44#include "internal/magics.h"
45
46
47/*******************************************************************************
48* Structures and Typedefs *
49*******************************************************************************/
50/**
51 * Wrapper for the Solaris mutex.
52 */
53typedef struct RTSEMFASTMUTEXINTERNAL
54{
55 /** Magic value (RTSEMFASTMUTEX_MAGIC). */
56 uint32_t u32Magic;
57 /** The Solaris mutex. */
58 krwlock_t Mtx;
59} RTSEMFASTMUTEXINTERNAL, *PRTSEMFASTMUTEXINTERNAL;
60
61
62
63RTDECL(int) RTSemFastMutexCreate(PRTSEMFASTMUTEX pMutexSem)
64{
65 AssertCompile(sizeof(RTSEMFASTMUTEXINTERNAL) > sizeof(void *));
66 AssertPtrReturn(pMutexSem, VERR_INVALID_POINTER);
67 RT_ASSERT_PREEMPTIBLE();
68
69 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)RTMemAlloc(sizeof(*pFastInt));
70 if (pFastInt)
71 {
72 pFastInt->u32Magic = RTSEMFASTMUTEX_MAGIC;
73 rw_init (&pFastInt->Mtx, "RWLOCK", RW_DRIVER, NULL);
74 *pMutexSem = pFastInt;
75 return VINF_SUCCESS;
76 }
77 return VERR_NO_MEMORY;
78}
79
80
81RTDECL(int) RTSemFastMutexDestroy(RTSEMFASTMUTEX MutexSem)
82{
83 if (MutexSem == NIL_RTSEMFASTMUTEX)
84 return VERR_INVALID_PARAMETER;
85 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)MutexSem;
86 AssertPtrReturn(pFastInt, VERR_INVALID_PARAMETER);
87 AssertMsgReturn(pFastInt->u32Magic == RTSEMFASTMUTEX_MAGIC,
88 ("pFastInt->u32Magic=%RX32 pFastInt=%p\n", pFastInt->u32Magic, pFastInt),
89 VERR_INVALID_PARAMETER);
90 RT_ASSERT_INTS_ON();
91
92 ASMAtomicXchgU32(&pFastInt->u32Magic, RTSEMFASTMUTEX_MAGIC_DEAD);
93 rw_destroy(&pFastInt->Mtx);
94 RTMemFree(pFastInt);
95
96 return VINF_SUCCESS;
97}
98
99
100RTDECL(int) RTSemFastMutexRequest(RTSEMFASTMUTEX MutexSem)
101{
102 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)MutexSem;
103 AssertPtrReturn(pFastInt, VERR_INVALID_PARAMETER);
104 AssertMsgReturn(pFastInt->u32Magic == RTSEMFASTMUTEX_MAGIC,
105 ("pFastInt->u32Magic=%RX32 pFastInt=%p\n", pFastInt->u32Magic, pFastInt),
106 VERR_INVALID_PARAMETER);
107 RT_ASSERT_PREEMPTIBLE();
108
109 rw_enter(&pFastInt->Mtx, RW_WRITER);
110 return VINF_SUCCESS;
111}
112
113
114RTDECL(int) RTSemFastMutexRelease(RTSEMFASTMUTEX MutexSem)
115{
116 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)MutexSem;
117 AssertPtrReturn(pFastInt, VERR_INVALID_PARAMETER);
118 AssertMsgReturn(pFastInt->u32Magic == RTSEMFASTMUTEX_MAGIC,
119 ("pFastInt->u32Magic=%RX32 pFastInt=%p\n", pFastInt->u32Magic, pFastInt),
120 VERR_INVALID_PARAMETER);
121 RT_ASSERT_INTS_ON();
122
123 rw_exit(&pFastInt->Mtx);
124 return VINF_SUCCESS;
125}
126
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