VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/os2/semfastmutex-r0drv-os2.cpp@ 1191

Last change on this file since 1191 was 1191, checked in by vboxsync, 18 years ago

svn properties.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.4 KB
Line 
1/* $Id: semfastmutex-r0drv-os2.cpp 1191 2007-03-04 20:46:04Z vboxsync $ */
2/** @file
3 * InnoTek Portable Runtime - Fast Mutex Semaphores, Ring-0 Driver, OS/2.
4 */
5
6/*
7 * Copyright (c) 2007 knut st. osmundsen <[email protected]>
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* Header Files *
33*******************************************************************************/
34#include "the-os2-kernel.h"
35
36#include <iprt/semaphore.h>
37#include <iprt/err.h>
38#include <iprt/alloc.h>
39#include <iprt/assert.h>
40#include <iprt/asm.h>
41
42
43/*******************************************************************************
44* Structures and Typedefs *
45*******************************************************************************/
46/**
47 * Wrapper for the OS/2 KEE mutex semaphore.
48 */
49typedef struct RTSEMFASTMUTEXINTERNAL
50{
51 /** Magic value (RTSEMFASTMUTEX_MAGIC). */
52 uint32_t u32Magic;
53 /** The KEE mutex. */
54 MutexLock_t Mtx;
55} RTSEMFASTMUTEXINTERNAL, *PRTSEMFASTMUTEXINTERNAL;
56
57/** Magic value for RTSEMFASTMUTEXINTERNAL::u32Magic (John Ronald Reuel Tolkien). */
58#define RTSEMFASTMUTEX_MAGIC 0x18920102
59/** Dead magic value. */
60#define RTSEMFASTMUTEX_MAGIC_DEAD 0x0000000 /// @todo
61
62
63RTDECL(int) RTSemFastMutexCreate(PRTSEMFASTMUTEX pMutexSem)
64{
65 AssertCompile(sizeof(RTSEMFASTMUTEXINTERNAL) > sizeof(void *));
66 AssertPtrReturn(pMutexSem, VERR_INVALID_POINTER);
67
68 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)RTMemAlloc(sizeof(*pFastInt));
69 if (pFastInt)
70 {
71 pFastInt->u32Magic = RTSEMFASTMUTEX_MAGIC;
72 KernAllocMutexLock(&pFastInt->Mtx);
73 *pMutexSem = pFastInt;
74 return VINF_SUCCESS;
75 }
76 return VERR_NO_MEMORY;
77}
78
79
80RTDECL(int) RTSemFastMutexDestroy(RTSEMFASTMUTEX MutexSem)
81{
82 if (MutexSem == NIL_RTSEMFASTMUTEX) /* don't bitch */
83 return VERR_INVALID_PARAMETER;
84 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)MutexSem;
85 AssertPtrReturn(pFastInt, VERR_INVALID_PARAMETER);
86 AssertMsgReturn(pFastInt->u32Magic == RTSEMFASTMUTEX_MAGIC,
87 ("pFastInt->u32Magic=%RX32 pFastInt=%p\n", pFastInt->u32Magic, pFastInt),
88 VERR_INVALID_PARAMETER);
89
90 ASMAtomicXchgU32(&pFastInt->u32Magic, RTSEMFASTMUTEX_MAGIC_DEAD);
91 KernFreeMutexLock(&pFastInt->Mtx);
92 RTMemFree(pFastInt);
93
94 return VINF_SUCCESS;
95}
96
97
98RTDECL(int) RTSemFastMutexRequest(RTSEMFASTMUTEX MutexSem)
99{
100 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)MutexSem;
101 AssertPtrReturn(pFastInt, VERR_INVALID_PARAMETER);
102 AssertMsgReturn(pFastInt->u32Magic == RTSEMFASTMUTEX_MAGIC,
103 ("pFastInt->u32Magic=%RX32 pFastInt=%p\n", pFastInt->u32Magic, pFastInt),
104 VERR_INVALID_PARAMETER);
105 KernRequestExclusiveMutex(&pFastInt->Mtx);
106 return VINF_SUCCESS;
107}
108
109
110RTDECL(int) RTSemFastMutexRelease(RTSEMFASTMUTEX MutexSem)
111{
112 PRTSEMFASTMUTEXINTERNAL pFastInt = (PRTSEMFASTMUTEXINTERNAL)MutexSem;
113 AssertPtrReturn(pFastInt, VERR_INVALID_PARAMETER);
114 AssertMsgReturn(pFastInt->u32Magic == RTSEMFASTMUTEX_MAGIC,
115 ("pFastInt->u32Magic=%RX32 pFastInt=%p\n", pFastInt->u32Magic, pFastInt),
116 VERR_INVALID_PARAMETER);
117 KernReleaseExclusiveMutex(&pFastInt->Mtx);
118 return VINF_SUCCESS;
119}
120
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