Changeset 52618 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
- Timestamp:
- Sep 5, 2014 12:07:29 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
r50762 r52618 319 319 ifnet_reference(pIfNet); 320 320 } 321 RTSpinlockRelease NoInts(pThis->hSpinlock);321 RTSpinlockRelease(pThis->hSpinlock); 322 322 323 323 return pIfNet; … … 749 749 ASMAtomicWriteBool(&pThis->fDisconnectedFromHost, true); 750 750 751 RTSpinlockRelease NoInts(pThis->hSpinlock);751 RTSpinlockRelease(pThis->hSpinlock); 752 752 753 753 if (pIfNet) … … 1031 1031 RTSpinlockAcquire(pThis->hSpinlock); 1032 1032 ASMAtomicUoWritePtr(&pThis->u.s.pIfNet, pIfNet); 1033 RTSpinlockRelease NoInts(pThis->hSpinlock);1033 RTSpinlockRelease(pThis->hSpinlock); 1034 1034 1035 1035 /* Adjust g_offIfNetPCount as it varies for different versions of xnu. */ … … 1069 1069 pIfNet = NULL; /* don't dereference it */ 1070 1070 } 1071 RTSpinlockRelease NoInts(pThis->hSpinlock);1071 RTSpinlockRelease(pThis->hSpinlock); 1072 1072 1073 1073 /* Report capabilities. */ … … 1290 1290 if (pIfFilter) 1291 1291 ASMAtomicUoWriteNullPtr(&pThis->u.s.pIfFilter); 1292 RTSpinlockRelease NoInts(pThis->hSpinlock);1292 RTSpinlockRelease(pThis->hSpinlock); 1293 1293 1294 1294 if (pIfFilter)
Note:
See TracChangeset
for help on using the changeset viewer.