Skip to content

Instantly share code, notes, and snippets.

@fjolnir
Created December 11, 2013 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fjolnir/5d96b3272c6255f6baae to your computer and use it in GitHub Desktop.
Save fjolnir/5d96b3272c6255f6baae to your computer and use it in GitHub Desktop.
- (void)setFoo:(id)aFoo
{
id old = _foo;
if(OSAtomicCompareAndSwapPtr(old, aFoo, &_foo)) {
[aFoo retain];
[old release];
}
else
[self setFoo:aFoo];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment