Changeset 52618 in vbox for trunk/src/VBox/Runtime/r0drv/linux
- Timestamp:
- Sep 5, 2014 12:07:29 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95899
- Location:
- trunk/src/VBox/Runtime/r0drv/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
r52581 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 … … 412 412 RT_EXPORT_SYMBOL(RTMpPokeCpu); 413 413 414 415 RTDECL(bool) RTMpOnAllIsConcurrentSafe(void) 416 { 417 return true; 418 } 419 RT_EXPORT_SYMBOL(RTMpOnAllIsConcurrentSafe); 420 -
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r50811 r52618 5 5 6 6 /* 7 * Copyright (C) 2006-201 3Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 178 178 RT_EXPORT_SYMBOL(RTSpinlockRelease); 179 179 180 181 RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock)182 {183 #if 1184 if (RT_UNLIKELY(!(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)))185 RTAssertMsg2("RTSpinlockReleaseNoInts: %p (magic=%#x)\n", Spinlock, Spinlock->u32Magic);186 #else187 AssertRelease(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE);188 #endif189 RTSpinlockRelease(Spinlock);190 }191 RT_EXPORT_SYMBOL(RTSpinlockReleaseNoInts);192 -
trunk/src/VBox/Runtime/r0drv/linux/timer-r0drv-linux.c
r44528 r52618 1441 1441 1442 1442 if (pTimer->cCpus > 1) 1443 RTSpinlockRelease NoInts(pTimer->hSpinlock);1443 RTSpinlockRelease(pTimer->hSpinlock); 1444 1444 } 1445 1445
Note:
See TracChangeset
for help on using the changeset viewer.