/* $Id: spinlock-r0drv-os2.cpp 8245 2008-04-21 17:24:28Z vboxsync $ */ /** @file * IPRT - Spinlocks, Ring-0 Driver, OS/2. */ /* * Copyright (c) 2007 knut st. osmundsen * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ /******************************************************************************* * Header Files * *******************************************************************************/ #include "the-os2-kernel.h" #include #include #include #include #include #include "internal/magics.h" /******************************************************************************* * Structures and Typedefs * *******************************************************************************/ /** * Wrapper for the SpinLock_t type. */ typedef struct RTSPINLOCKINTERNAL { /** Spinlock magic value (RTSPINLOCK_MAGIC). */ uint32_t volatile u32Magic; /** The OS/2 spinlock structure. */ SpinLock_t Spinlock; } RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL; RTDECL(int) RTSpinlockCreate(PRTSPINLOCK pSpinlock) { /* * Allocate. */ AssertCompile(sizeof(RTSPINLOCKINTERNAL) > sizeof(void *)); PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)RTMemAlloc(sizeof(*pSpinlockInt)); if (!pSpinlockInt) return VERR_NO_MEMORY; /* * Initialize & return. */ pSpinlockInt->u32Magic = RTSPINLOCK_MAGIC; KernAllocSpinLock(&pSpinlockInt->Spinlock); *pSpinlock = pSpinlockInt; return VINF_SUCCESS; } RTDECL(int) RTSpinlockDestroy(RTSPINLOCK Spinlock) { /* * Validate input. */ PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; if (!pSpinlockInt) return VERR_INVALID_PARAMETER; AssertMsgReturn(pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC, ("Invalid spinlock %p magic=%#x\n", pSpinlockInt, pSpinlockInt->u32Magic), VERR_INVALID_PARAMETER); /* * Make the lock invalid and release the memory. */ ASMAtomicIncU32(&pSpinlockInt->u32Magic); KernFreeSpinLock(&pSpinlockInt->Spinlock); RTMemFree(pSpinlockInt); return VINF_SUCCESS; } RTDECL(void) RTSpinlockAcquireNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertPtr(pSpinlockInt); Assert(pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC); KernAcquireSpinLock(&pSpinlockInt->Spinlock); NOREF(pTmp); } RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertPtr(pSpinlockInt); Assert(pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC); KernReleaseSpinLock(&pSpinlockInt->Spinlock); NOREF(pTmp); } RTDECL(void) RTSpinlockAcquire(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertPtr(pSpinlockInt); Assert(pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC); KernAcquireSpinLock(&pSpinlockInt->Spinlock); NOREF(pTmp); } RTDECL(void) RTSpinlockRelease(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertPtr(pSpinlockInt); Assert(pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC); KernReleaseSpinLock(&pSpinlockInt->Spinlock); NOREF(pTmp); }