I am learning sync.map recently, but the implemention of tryStore func 
<https://go.googlesource.com/go/+/go1.11/src/sync/map.go#169> makes me 
confused, 
why not use the code below instead



func (e *entry) tryStore(i *interface{}) bool {
   for {
       p = atomic.LoadPointer(&e.p)
       if p == expunged {
           return false
       }
       if atomic.CompareAndSwapPointer(&e.p, p, unsafe.Pointer(i)) {
           return true
       }
   }
}


-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to