> In malloc as I described in previous thread locking seem bottleneck. > Unless with lock elision it would take 10 cycles or so then implementations that > avoid locks/atomic are better. Lock elision is mainly useful for contended locks. It's unlikely to help with an uncontended lock. -Andi