Skip to content

Commit

Permalink
mark three mulleTAOStrategy with MULLE_OBJC_THREADSAFE_METHOD
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 25, 2024
1 parent 28b3184 commit ad0f259
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/class/MulleObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

PROTOCOLCLASS_IMPLEMENTATION( MulleAutolockingObject)

- (MulleObjCTAOStrategy) mulleTAOStrategy
- (MulleObjCTAOStrategy) mulleTAOStrategy MULLE_OBJC_THREADSAFE_METHOD
{
return( MulleObjCTAOKnownThreadSafe);
}
Expand Down
2 changes: 1 addition & 1 deletion src/protocol/MulleObjCProtocol.m
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ - (id) mulleThreadSafeCopy
// So ensure that the strategy is back to the default
//

- (MulleObjCTAOStrategy) mulleTAOStrategy
- (MulleObjCTAOStrategy) mulleTAOStrategy MULLE_OBJC_THREADSAFE_METHOD
{
return( MulleObjCTAOCallerRemovesFromCurrentPool);
}
Expand Down
2 changes: 1 addition & 1 deletion src/protocol/MulleObjCRootObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ - (void) mulleRelinquishAccessWithTAOStrategy:(MulleObjCTAOStrategy) strategy
// to write a checker that compares the mulleTaoStrategy of classes with the
// provided methods and check if its consistent (IMO)
//
- (MulleObjCTAOStrategy) mulleTAOStrategy
- (MulleObjCTAOStrategy) mulleTAOStrategy MULLE_OBJC_THREADSAFE_METHOD
{
return( MulleObjCTAOCallerRemovesFromCurrentPool);
}
Expand Down

0 comments on commit ad0f259

Please sign in to comment.