VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/haiku/semmutex-r0drv-haiku.c@ 92247

Last change on this file since 92247 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.4 KB
Line 
1/* $Id: semmutex-r0drv-haiku.c 82968 2020-02-04 10:35:17Z vboxsync $ */
2/** @file
3 * IPRT - Mutex Semaphores, Ring-0 Driver, Haiku.
4 */
5
6/*
7 * Copyright (C) 2012-2020 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 "the-haiku-kernel.h"
32#include "internal/iprt.h"
33#include <iprt/semaphore.h>
34
35#include <iprt/asm.h>
36#include <iprt/assert.h>
37#include <iprt/err.h>
38#include <iprt/mem.h>
39#include <iprt/thread.h>
40#include <iprt/time.h>
41
42#include "internal/magics.h"
43
44
45/*********************************************************************************************************************************
46* Structures and Typedefs *
47*********************************************************************************************************************************/
48/**
49 * Wrapper for the Haiku (sleep) mutex.
50 */
51/* XXX: not optimal, maybe should use the (private)
52 kernel recursive_lock ? (but it's not waitable) */
53typedef struct RTSEMMUTEXINTERNAL
54{
55 /** Magic value (RTSEMMUTEX_MAGIC). */
56 uint32_t u32Magic;
57 /** Kernel semaphore. */
58 sem_id SemId;
59 /** Current holder */
60 volatile thread_id OwnerId;
61 /** Recursion count */
62 int32 cRecursion;
63} RTSEMMUTEXINTERNAL, *PRTSEMMUTEXINTERNAL;
64
65
66RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem)
67{
68 AssertCompile(sizeof(RTSEMMUTEXINTERNAL) > sizeof(void *));
69 AssertPtrReturn(phMutexSem, VERR_INVALID_POINTER);
70
71 PRTSEMMUTEXINTERNAL pThis = (PRTSEMMUTEXINTERNAL)RTMemAllocZ(sizeof(*pThis));
72 if (RT_UNLIKELY(!pThis))
73 return VERR_NO_MEMORY;
74
75 pThis->u32Magic = RTSEMMUTEX_MAGIC;
76 pThis->SemId = create_sem(0, "IPRT Mutex Semaphore");
77 if (pThis->SemId < B_OK)
78 {
79 pThis->OwnerId = -1;
80 pThis->cRecursion = 0;
81 *phMutexSem = pThis;
82 return VINF_SUCCESS;
83 }
84 RTMemFree(pThis);
85 return VERR_TOO_MANY_SEMAPHORES; /** @todo r=ramshankar: use RTErrConvertFromHaikuKernReturn */
86}
87
88
89RTDECL(int) RTSemMutexDestroy(RTSEMMUTEX hMutexSem)
90{
91 PRTSEMMUTEXINTERNAL pThis = hMutexSem;
92 if (pThis == NIL_RTSEMMUTEX)
93 return VINF_SUCCESS;
94 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
95 AssertMsgReturn(pThis->u32Magic == RTSEMMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
96
97 AssertReturn(ASMAtomicCmpXchgU32(&pThis->u32Magic, RTSEMMUTEX_MAGIC_DEAD, RTSEMMUTEX_MAGIC), VERR_INVALID_HANDLE);
98
99 delete_sem(pThis->SemId);
100 RTMemFree(pThis);
101
102 return VINF_SUCCESS;
103}
104
105
106/**
107 * Worker function for acquiring the mutex.
108 *
109 * @param hMutexSem The mutex object.
110 * @param fFlags Mutex flags (see RTSEMWAIT_FLAGS_*)
111 * @param uTimeout Timeout in units specified by the flags.
112 *
113 * @return IPRT status code.
114 */
115static int rtSemMutexRequestEx(RTSEMMUTEX hMutexSem, uint32_t fFlags, uint64_t uTimeout)
116{
117 PRTSEMMUTEXINTERNAL pThis = hMutexSem;
118 int rc;
119 status_t status;
120 int32 flags = 0;
121 bigtime_t timeout; /* in microseconds */
122 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
123 AssertMsgReturn(pThis->u32Magic == RTSEMMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
124
125 if (pThis->OwnerId == find_thread(NULL))
126 {
127 pThis->OwnerId++;
128 return VINF_SUCCESS;
129 }
130
131 if (fFlags & RTSEMWAIT_FLAGS_INDEFINITE)
132 timeout = B_INFINITE_TIMEOUT;
133 else
134 {
135 if (fFlags & RTSEMWAIT_FLAGS_NANOSECS)
136 timeout = uTimeout / 1000;
137 else if (fFlags & RTSEMWAIT_FLAGS_MILLISECS)
138 timeout = uTimeout * 1000;
139 else
140 return VERR_INVALID_PARAMETER;
141
142 if (fFlags & RTSEMWAIT_FLAGS_RELATIVE)
143 flags |= B_RELATIVE_TIMEOUT;
144 else if (fFlags & RTSEMWAIT_FLAGS_ABSOLUTE)
145 flags |= B_ABSOLUTE_TIMEOUT;
146 else
147 return VERR_INVALID_PARAMETER;
148 }
149
150 if (fFlags & RTSEMWAIT_FLAGS_INTERRUPTIBLE)
151 flags |= B_CAN_INTERRUPT;
152
153 status = acquire_sem_etc(pThis->SemId, 1, flags, timeout);
154
155 switch (status)
156 {
157 case B_OK:
158 rc = VINF_SUCCESS;
159 pThis->cRecursion = 1;
160 pThis->OwnerId = find_thread(NULL);
161 break;
162 case B_BAD_SEM_ID:
163 rc = VERR_SEM_DESTROYED;
164 break;
165 case B_INTERRUPTED:
166 rc = VERR_INTERRUPTED;
167 break;
168 case B_WOULD_BLOCK:
169 /* fallthrough? */
170 case B_TIMED_OUT:
171 rc = VERR_TIMEOUT;
172 break;
173 default:
174 rc = VERR_INVALID_PARAMETER;
175 break;
176 }
177
178 return rc;
179}
180
181
182RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies)
183{
184 return rtSemMutexRequestEx(hMutexSem, RTSEMWAIT_FLAGS_RELATIVE | RTSEMWAIT_FLAGS_RESUME | RTSEMWAIT_FLAGS_MILLISECS, cMillies);
185}
186
187
188RTDECL(int) RTSemMutexRequestDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL)
189{
190 return RTSemMutexRequest(hMutexSem, cMillies);
191}
192
193
194RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies)
195{
196 return rtSemMutexRequestEx(hMutexSem, RTSEMWAIT_FLAGS_RELATIVE | RTSEMWAIT_FLAGS_NORESUME | RTSEMWAIT_FLAGS_MILLISECS, cMillies);
197}
198
199
200RTDECL(int) RTSemMutexRequestNoResumeDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL)
201{
202 return RTSemMutexRequestNoResume(hMutexSem, cMillies);
203}
204
205
206RTDECL(int) RTSemMutexRelease(RTSEMMUTEX hMutexSem)
207{
208 PRTSEMMUTEXINTERNAL pThis = hMutexSem;
209 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
210 AssertMsgReturn(pThis->u32Magic == RTSEMMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
211
212 if (pThis->OwnerId != find_thread(NULL))
213 return VERR_INVALID_HANDLE;
214
215 if (--pThis->cRecursion == 0)
216 {
217 pThis->OwnerId == -1;
218 release_sem(pThis->SemId);
219 }
220
221 return VINF_SUCCESS;
222}
223
224
225RTDECL(bool) RTSemMutexIsOwned(RTSEMMUTEX hMutexSem)
226{
227 PRTSEMMUTEXINTERNAL pThis = hMutexSem;
228 AssertPtrReturn(pThis, false);
229 AssertMsgReturn(pThis->u32Magic == RTSEMMUTEX_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), false);
230
231 return pThis->OwnerId != -1;
232}
233
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