Changeset 53715 in vbox
- Timestamp:
- Jan 2, 2015 1:06:12 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97492
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceR0/VBoxDTraceR0.cpp
r53714 r53715 776 776 pData->pThread = pThread; 777 777 778 RTSpinlockRelease NoInts(g_hThreadSpinlock);778 RTSpinlockRelease(g_hThreadSpinlock); 779 779 return pThread; 780 780 } … … 828 828 pData->pThread = pThread; 829 829 830 RTSpinlockRelease NoInts(g_hThreadSpinlock);830 RTSpinlockRelease(g_hThreadSpinlock); 831 831 return pThread; 832 832 } … … 845 845 RTListAppend(&g_ThreadAgeList, &pThread->AgeEntry); 846 846 847 RTSpinlockRelease NoInts(g_hThreadSpinlock);847 RTSpinlockRelease(g_hThreadSpinlock); 848 848 } 849 849 … … 886 886 typedef struct VBoxDtVMem 887 887 { 888 /** Spinlock protecting the data . */888 /** Spinlock protecting the data (interrupt safe). */ 889 889 RTSPINLOCK hSpinlock; 890 890 /** Magic value. */ … … 1023 1023 1024 1024 uint32_t iRet = (uint32_t)iBit + pChunk->iFirst + pThis->uBase; 1025 RTSpinlockRelease NoInts(pThis->hSpinlock);1025 RTSpinlockRelease(pThis->hSpinlock); 1026 1026 return (void *)(uintptr_t)iRet; 1027 1027 } … … 1081 1081 } 1082 1082 } 1083 RTSpinlockRelease NoInts(pThis->hSpinlock);1083 RTSpinlockRelease(pThis->hSpinlock); 1084 1084 1085 1085 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.