VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/generic/semspinmutex-r3-generic.cpp@ 44528

Last change on this file since 44528 was 44528, checked in by vboxsync, 12 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1/* $Id: semspinmutex-r3-generic.cpp 44528 2013-02-04 14:27:54Z vboxsync $ */
2/** @file
3 * IPRT - Spinning Mutex Semaphores, Ring-3, Generic.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
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
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/semaphore.h>
32#include "internal/iprt.h"
33
34#include <iprt/alloc.h>
35#include <iprt/err.h>
36#include <iprt/assert.h>
37#include <iprt/critsect.h>
38
39
40
41RTDECL(int) RTSemSpinMutexCreate(PRTSEMSPINMUTEX phSpinMtx, uint32_t fFlags)
42{
43 AssertReturn(!(fFlags & ~RTSEMSPINMUTEX_FLAGS_VALID_MASK), VERR_INVALID_PARAMETER);
44 AssertPtr(phSpinMtx);
45
46 PRTCRITSECT pCritSect = (PRTCRITSECT)RTMemAlloc(sizeof(RTCRITSECT));
47 if (!pCritSect)
48 return VERR_NO_MEMORY;
49 int rc = RTCritSectInitEx(pCritSect, RTCRITSECT_FLAGS_NO_NESTING | RTCRITSECT_FLAGS_NO_LOCK_VAL,
50 NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, "RTSemSpinMutex");
51 if (RT_SUCCESS(rc))
52 *phSpinMtx = (RTSEMSPINMUTEX)pCritSect;
53 else
54 RTMemFree(pCritSect);
55 return rc;
56}
57RT_EXPORT_SYMBOL(RTSemSpinMutexCreate);
58
59
60RTDECL(int) RTSemSpinMutexDestroy(RTSEMSPINMUTEX hSpinMtx)
61{
62 if (hSpinMtx == NIL_RTSEMSPINMUTEX)
63 return VERR_INVALID_PARAMETER;
64 PRTCRITSECT pCritSect = (PRTCRITSECT)hSpinMtx;
65 int rc = RTCritSectDelete(pCritSect);
66 if (RT_SUCCESS(rc))
67 RTMemFree(pCritSect);
68 return rc;
69}
70RT_EXPORT_SYMBOL(RTSemSpinMutexDestroy);
71
72
73RTDECL(int) RTSemSpinMutexTryRequest(RTSEMSPINMUTEX hSpinMtx)
74{
75 return RTCritSectTryEnter((PRTCRITSECT)hSpinMtx);
76
77}
78RT_EXPORT_SYMBOL(RTSemSpinMutexTryRequest);
79
80
81RTDECL(int) RTSemSpinMutexRequest(RTSEMSPINMUTEX hSpinMtx)
82{
83 return RTCritSectEnter((PRTCRITSECT)hSpinMtx);
84}
85RT_EXPORT_SYMBOL(RTSemSpinMutexRequest);
86
87
88RTDECL(int) RTSemSpinMutexRelease(RTSEMSPINMUTEX hSpinMtx)
89{
90 return RTCritSectLeave((PRTCRITSECT)hSpinMtx);
91}
92RT_EXPORT_SYMBOL(RTSemSpinMutexRelease);
93
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