Is OSCompareAndSwap (Mac OS X) equivalent to CMPXCHG8B?
|
feedback
|
|
You can find the definition of the atomic functions in the OSAtomic.s file in the XNU source. For example, here's OSAtomicCompareAndSwapPtr for x86_64 in version 1486.2.11:
| |||||||
feedback
|
|
lock cmpxchg8b more exactly It's for intel processors, but take into account, that osx exists not only for intel architecture, so asm will be different | |||||
feedback
|