Return TypeFunction nameArguments
unsigned inthzDomain::Copies(void)

Declared in file: hzEmaddr.h
Defined in file : hzDomain.cpp

Function Logic:

0:START 1:!m_addr 2:Return 0 3:hzSSR::Xlate thisCtl 4:!thisCtl 5:Return 0 6:Return thisCtl->m_copy

Function body:

unsigned int hzDomain::Copies (void)
{
   _hzfunc("hzDomain::Copies") ;
   _dom_space* thisCtl ;
   if (!m_addr)
       return 0;
   thisCtl = (_dom_space*) g_ssrInet.Xlate(m_addr) ;
   if (!thisCtl)
       { threadLog("Ivalid domain space %u:%u\n", (m_addr&0x7fff000)>>16,m_addr&0xffff);return0;}
   return thisCtl->m_copy ;
}