VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/netbsd/semfastmutex-r0drv-netbsd.c@ 78381

Last change on this file since 78381 was 77120, checked in by vboxsync, 6 years ago

IPRT: Some license header cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/* $Id: semfastmutex-r0drv-netbsd.c 77120 2019-02-01 15:08:46Z vboxsync $ */
2/** @file
3 * IPRT - Fast Mutex Semaphores, Ring-0 Driver, NetBSD.
4 */
5
6/*
7 * Contributed by knut st. osmundsen.
8 *
9 * Copyright (C) 2007-2019 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * The contents of this file may alternatively be used under the terms
20 * of the Common Development and Distribution License Version 1.0
21 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
22 * VirtualBox OSE distribution, in which case the provisions of the
23 * CDDL are applicable instead of those of the GPL.
24 *
25 * You may elect to license modified versions of this file under the
26 * terms and conditions of either the GPL or the CDDL or both.
27 *
28 * --------------------------------------------------------------------
29 *
30 * Copyright (c) 2007 knut st. osmundsen <[email protected]>
31 *
32 * Permission is hereby granted, free of charge, to any person
33 * obtaining a copy of this software and associated documentation
34 * files (the "Software"), to deal in the Software without
35 * restriction, including without limitation the rights to use,
36 * copy, modify, merge, publish, distribute, sublicense, and/or sell
37 * copies of the Software, and to permit persons to whom the
38 * Software is furnished to do so, subject to the following
39 * conditions:
40 *
41 * The above copyright notice and this permission notice shall be
42 * included in all copies or substantial portions of the Software.
43 *
44 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
45 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
46 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
47 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
48 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
49 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
50 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
51 * OTHER DEALINGS IN THE SOFTWARE.
52 */
53
54
55/*********************************************************************************************************************************
56* Header Files *
57*********************************************************************************************************************************/
58#include "the-netbsd-kernel.h"
59
60#include <iprt/semaphore.h>
61#include <iprt/errcore.h>
62#include <iprt/alloc.h>
63#include <iprt/assert.h>
64#include <iprt/asm.h>
65
66#include "internal/magics.h"
67
68
69/*********************************************************************************************************************************
70* Structures and Typedefs *
71*********************************************************************************************************************************/
72/**
73 * Wrapper for the NetBSD (sleep) mutex.
74 */
75typedef struct RTSEMFASTMUTEXINTERNAL
76{
77 /** Magic value (RTSEMFASTMUTEX_MAGIC). */
78 uint32_t u32Magic;
79 /** The NetBSD shared/exclusive lock mutex. */
80 krwlock_t Mtx;
81} RTSEMFASTMUTEXINTERNAL, *PRTSEMFASTMUTEXINTERNAL;
82
83
84RTDECL(int) RTSemFastMutexCreate(PRTSEMFASTMUTEX phFastMtx)
85{
86 AssertCompile(sizeof(RTSEMFASTMUTEXINTERNAL) > sizeof(void *));
87 AssertPtrReturn(phFastMtx, VERR_INVALID_POINTER);
88
89 PRTSEMFASTMUTEXINTERNAL pThis = (PRTSEMFASTMUTEXINTERNAL)RTMemAllocZ(sizeof(*pThis));
90 if (pThis)
91 {
92 pThis->u32Magic = RTSEMFASTMUTEX_MAGIC;
93 rw_init(&pThis->Mtx);
94
95 *phFastMtx = pThis;
96 return VINF_SUCCESS;
97 }
98 return VERR_NO_MEMORY;
99}
100
101
102RTDECL(int) RTSemFastMutexDestroy(RTSEMFASTMUTEX hFastMtx)
103{
104 PRTSEMFASTMUTEXINTERNAL pThis = hFastMtx;
105 if (pThis == NIL_RTSEMFASTMUTEX)
106 return VINF_SUCCESS;
107 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
108 AssertMsgReturn(pThis->u32Magic == RTSEMFASTMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
109
110 ASMAtomicWriteU32(&pThis->u32Magic, RTSEMFASTMUTEX_MAGIC_DEAD);
111 rw_destroy(&pThis->Mtx);
112 RTMemFree(pThis);
113
114 return VINF_SUCCESS;
115}
116
117
118RTDECL(int) RTSemFastMutexRequest(RTSEMFASTMUTEX hFastMtx)
119{
120 PRTSEMFASTMUTEXINTERNAL pThis = hFastMtx;
121 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
122 AssertMsgReturn(pThis->u32Magic == RTSEMFASTMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
123
124 rw_enter(&pThis->Mtx, RW_WRITER);
125 return VINF_SUCCESS;
126}
127
128
129RTDECL(int) RTSemFastMutexRelease(RTSEMFASTMUTEX hFastMtx)
130{
131 PRTSEMFASTMUTEXINTERNAL pThis = hFastMtx;
132 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
133 AssertMsgReturn(pThis->u32Magic == RTSEMFASTMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
134
135 rw_exit(&pThis->Mtx);
136 return VINF_SUCCESS;
137}
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