Changeset 52618 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd
- Timestamp:
- Sep 5, 2014 12:07:29 PM (10 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/freebsd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/mp-r0drv-freebsd.c
r49718 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 … … 289 289 #endif /* < 7.0 */ 290 290 291 292 RTDECL(bool) RTMpOnAllIsConcurrentSafe(void) 293 { 294 return true; 295 } 296 -
trunk/src/VBox/Runtime/r0drv/freebsd/spinlock-r0drv-freebsd.c
r42496 r52618 208 208 } 209 209 210 211 RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock)212 {213 #if 1214 if (RT_UNLIKELY(!(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)))215 RTAssertMsg2("RTSpinlockReleaseNoInts: %p (magic=%#x)\n", Spinlock, Spinlock->u32Magic);216 #else217 AssertRelease(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE);218 #endif219 RTSpinlockRelease(Spinlock);220 }221
Note:
See TracChangeset
for help on using the changeset viewer.