Changeset 9527 in vbox for trunk/src/VBox/Runtime/r0drv/linux
- Timestamp:
- Jun 9, 2008 10:11:29 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 31805
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/timer-r0drv-linux.c
r9494 r9527 625 625 return; 626 626 627 RTSpinlockAcquire NoInts(hSpinlock, &Tmp);627 RTSpinlockAcquire(hSpinlock, &Tmp); 628 628 629 629 /* Is it active? */ … … 649 649 { 650 650 rtTimerLnxSetState(&pSubTimer->enmState, RTTIMERLNXSTATE_STOPPED); /* we'll recheck it. */ 651 RTSpinlockRelease NoInts(hSpinlock, &Tmp);651 RTSpinlockRelease(hSpinlock, &Tmp); 652 652 653 653 RTMpOnSpecific(idCpu, rtTimerLinuxMpStartOnCpu, pTimer, &Args); … … 666 666 if (rtTimerLnxCmpXchgState(&pSubTimer->enmState, RTTIMERLNXSTATE_MP_STOPPING, RTTIMERLNXSTATE_ACTIVE)) 667 667 { 668 RTSpinlock AcquireNoInts(hSpinlock, &Tmp);668 RTSpinlockRelease(hSpinlock, &Tmp); 669 669 670 670 rtTimerLnxStopSubTimer(pSubTimer); … … 675 675 } 676 676 677 RTSpinlockAcquire NoInts(hSpinlock, &Tmp);677 RTSpinlockAcquire(hSpinlock, &Tmp); 678 678 } 679 679
Note:
See TracChangeset
for help on using the changeset viewer.