Changeset 52618 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Sep 5, 2014 12:07:29 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95899
- Location:
- trunk/src/VBox/Runtime/r0drv/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/mp-r0drv-solaris.c
r44529 r52618 5 5 6 6 /* 7 * Copyright (C) 2008-201 2Oracle Corporation7 * Copyright (C) 2008-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 345 345 } 346 346 347 348 RTDECL(bool) RTMpOnAllIsConcurrentSafe(void) 349 { 350 return true; 351 } 352 -
trunk/src/VBox/Runtime/r0drv/solaris/spinlock-r0drv-solaris.c
r44528 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 … … 203 203 } 204 204 205 206 RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock)207 {208 #if 1209 if (RT_UNLIKELY(!(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)))210 RTAssertMsg2("RTSpinlockReleaseNoInts: %p (magic=%#x)\n", Spinlock, Spinlock->u32Magic);211 #else212 AssertRelease(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE);213 #endif214 RTSpinlockRelease(Spinlock);215 }216
Note:
See TracChangeset
for help on using the changeset viewer.