VirtualBox

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

Last change on this file since 26430 was 25722, checked in by vboxsync, 15 years ago

iprt/RTSemFastMutex: A little cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1/* $Id: semfastmutex-r0drv-os2.cpp 25722 2010-01-11 14:22:03Z vboxsync $ */
2/** @file
3 * IPRT - Fast Mutex Semaphores, Ring-0 Driver, OS/2.
4 */
5
6/*
7 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
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#include "internal/magics.h"
43
44
45/*******************************************************************************
46* Structures and Typedefs *
47*******************************************************************************/
48/**
49 * Wrapper for the OS/2 KEE mutex semaphore.
50 */
51typedef struct RTSEMFASTMUTEXINTERNAL
52{
53 /** Magic value (RTSEMFASTMUTEX_MAGIC). */
54 uint32_t u32Magic;
55 /** The KEE mutex. */
56 MutexLock_t Mtx;
57} RTSEMFASTMUTEXINTERNAL, *PRTSEMFASTMUTEXINTERNAL;
58
59
60RTDECL(int) RTSemFastMutexCreate(PRTSEMFASTMUTEX phFastMtx)
61{
62 AssertCompile(sizeof(RTSEMFASTMUTEXINTERNAL) > sizeof(void *));
63 AssertPtrReturn(phFastMtx, VERR_INVALID_POINTER);
64
65 PRTSEMFASTMUTEXINTERNAL pThis = (PRTSEMFASTMUTEXINTERNAL)RTMemAlloc(sizeof(*pThis));
66 if (pThis)
67 {
68 pThis->u32Magic = RTSEMFASTMUTEX_MAGIC;
69 KernAllocMutexLock(&pThis->Mtx);
70
71 *phFastMtx = pThis;
72 return VINF_SUCCESS;
73 }
74 return VERR_NO_MEMORY;
75}
76
77
78RTDECL(int) RTSemFastMutexDestroy(RTSEMFASTMUTEX hFastMtx)
79{
80 PRTSEMFASTMUTEXINTERNAL pThis = hFastMtx;
81 if (pThis == NIL_RTSEMFASTMUTEX)
82 return VINF_SUCCESS;
83 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
84 AssertMsgReturn(pThis->u32Magic == RTSEMFASTMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
85
86 ASMAtomicWriteU32(&pThis->u32Magic, RTSEMFASTMUTEX_MAGIC_DEAD);
87 KernFreeMutexLock(&pThis->Mtx);
88 RTMemFree(pThis);
89
90 return VINF_SUCCESS;
91}
92
93
94RTDECL(int) RTSemFastMutexRequest(RTSEMFASTMUTEX hFastMtx)
95{
96 PRTSEMFASTMUTEXINTERNAL pThis = hFastMtx;
97 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
98 AssertMsgReturn(pThis->u32Magic == RTSEMFASTMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
99
100 KernRequestExclusiveMutex(&pThis->Mtx);
101 return VINF_SUCCESS;
102}
103
104
105RTDECL(int) RTSemFastMutexRelease(RTSEMFASTMUTEX hFastMtx)
106{
107 PRTSEMFASTMUTEXINTERNAL pThis = hFastMtx;
108 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
109 AssertMsgReturn(pThis->u32Magic == RTSEMFASTMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
110
111 KernReleaseExclusiveMutex(&pThis->Mtx);
112 return VINF_SUCCESS;
113}
114
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