Changeset 52618 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Sep 5, 2014 12:07:29 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95899
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/SrvPciRawR0.cpp
r44529 r52618 5 5 6 6 /* 7 * Copyright (C) 2011-201 2Oracle Corporation7 * Copyright (C) 2011-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 115 115 RTSpinlockAcquire(pThis->hSpinlock); 116 116 pThis->iPendingIrq = iHostIrq; 117 RTSpinlockRelease NoInts(pThis->hSpinlock);117 RTSpinlockRelease(pThis->hSpinlock); 118 118 119 119 /** … … 872 872 pDev->iPendingIrq = 0; 873 873 fTerminate = pDev->fTerminate; 874 RTSpinlockRelease NoInts(pDev->hSpinlock);874 RTSpinlockRelease(pDev->hSpinlock); 875 875 876 876 /* Block until new IRQs arrives */ … … 888 888 iPendingIrq = pDev->iPendingIrq; 889 889 pDev->iPendingIrq = 0; 890 RTSpinlockRelease NoInts(pDev->hSpinlock);890 RTSpinlockRelease(pDev->hSpinlock); 891 891 } 892 892 else
Note:
See TracChangeset
for help on using the changeset viewer.