Changeset 52618 in vbox for trunk/src/VBox/Runtime/r0drv/darwin
- Timestamp:
- Sep 5, 2014 12:07:29 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95899
- Location:
- trunk/src/VBox/Runtime/r0drv/darwin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/mp-r0drv-darwin.cpp
r44529 r52618 5 5 6 6 /* 7 * Copyright (C) 2008-201 1Oracle Corporation7 * Copyright (C) 2008-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 271 271 } 272 272 273 274 RTDECL(bool) RTMpOnAllIsConcurrentSafe(void) 275 { 276 return true; 277 } 278 -
trunk/src/VBox/Runtime/r0drv/darwin/spinlock-r0drv-darwin.cpp
r48935 r52618 5 5 6 6 /* 7 * Copyright (C) 2006-201 2Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 161 161 } 162 162 163 164 RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock)165 {166 #if 1167 if (RT_UNLIKELY(!(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)))168 RTAssertMsg2("RTSpinlockReleaseNoInts: %p (%s)\n", Spinlock, Spinlock->pszName);169 #else170 AssertRelease(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE);171 #endif172 RTSpinlockRelease(Spinlock);173 }174
Note:
See TracChangeset
for help on using the changeset viewer.