This check finds the use of methods related to OSSpinlock in Objective-C code, which should be deprecated due to livelock issues.
The following method call will be detected:
- OSSpinlockLock()
- OSSpinlockTry()
- OSSpinlockUnlcok()
Differential D40325
add new check to find OSSpinlock usage Wizard on Nov 21 2017, 3:09 PM. Authored by
Details This check finds the use of methods related to OSSpinlock in Objective-C code, which should be deprecated due to livelock issues.
Diff Detail
Event TimelineComment Actions The implementation looks good, I will let Ben to do the Object-C specific review since he probably knows more about it.
Comment Actions Thanks, looks good. Just one question about the test.
|
Remove "in Objective-C files".