1 | /* $Id: semfastmutex-generic.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Fast Mutex, Generic.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <iprt/semaphore.h>
|
---|
23 | #include <iprt/alloc.h>
|
---|
24 | #include <iprt/err.h>
|
---|
25 | #include <iprt/critsect.h>
|
---|
26 |
|
---|
27 |
|
---|
28 |
|
---|
29 | RTDECL(int) RTSemFastMutexCreate(PRTSEMFASTMUTEX pMutexSem)
|
---|
30 | {
|
---|
31 | PRTCRITSECT pCritSect = (PRTCRITSECT)RTMemAlloc(sizeof(RTCRITSECT));
|
---|
32 | if (!pCritSect)
|
---|
33 | return VERR_NO_MEMORY;
|
---|
34 | int rc = RTCritSectInit(pCritSect);
|
---|
35 | if (RT_SUCCESS(rc))
|
---|
36 | *pMutexSem = (RTSEMFASTMUTEX)pCritSect;
|
---|
37 | return rc;
|
---|
38 | }
|
---|
39 |
|
---|
40 |
|
---|
41 | RTDECL(int) RTSemFastMutexDestroy(RTSEMFASTMUTEX MutexSem)
|
---|
42 | {
|
---|
43 | if (MutexSem == NIL_RTSEMFASTMUTEX)
|
---|
44 | return VERR_INVALID_PARAMETER;
|
---|
45 | PRTCRITSECT pCritSect = (PRTCRITSECT)MutexSem;
|
---|
46 | int rc = RTCritSectDelete(pCritSect);
|
---|
47 | if (RT_SUCCESS(rc))
|
---|
48 | RTMemFree(pCritSect);
|
---|
49 | return rc;
|
---|
50 | }
|
---|
51 |
|
---|
52 |
|
---|
53 | RTDECL(int) RTSemFastMutexRequest(RTSEMFASTMUTEX MutexSem)
|
---|
54 | {
|
---|
55 | return RTCritSectEnter((PRTCRITSECT)MutexSem);
|
---|
56 | }
|
---|
57 |
|
---|
58 |
|
---|
59 | RTDECL(int) RTSemFastMutexRelease(RTSEMFASTMUTEX MutexSem)
|
---|
60 | {
|
---|
61 | return RTCritSectLeave((PRTCRITSECT)MutexSem);
|
---|
62 | }
|
---|
63 |
|
---|