I saw an answer to a question regarding timing which used __sync_synchronize().

  • What does this function do?
  • And when is it necessary to be used?
link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

It is a atomic builtin for full memory barrier.

No memory operand will be moved across the operation, either forward or backward. Further, instructions will be issued as necessary to prevent the processor from speculating loads across the operation and from queuing stores after the operation.

Check details on the link above.

link|improve this answer
feedback

It forces a memory fence I guess.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.