Return TypeFunction nameArguments
hzXbuf&hzXbuf::operator=(const hzXbuf&,)

Declared in file: hzXbuf.h
Defined in file : hzXbuf.cpp

Function Logic:

0:START 1:hzXbuf::Clear 2:op.mx 3:_hzGlobal_MT 4:__sync_add_and_fetch 5:items 6:mx 7:Return *this

Function body:

hzXbuf& hzXbuf::operator= (const hzXbuf& op)
{
   _hzfunc("hzXbuf::operator=(hzXbuf)") ;
   Clear() ;
   if (op.mx)
   {
       if (_hzGlobal_MT)
           __sync_add_and_fetch((uint32_t*)&(op.mx->m_copy), 1);
       else
           op.mx->m_copy++ ;
   }
    mx = op.mx ;
   return *this ;
}