Return TypeFunction nameArguments
hzProcess*GetThreadInfo(void)

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

Function Logic:

0:START 1:pthread_self tid n 2:n 3:phz 4:tid==phz->GetTID() 5:Return phz 6:Return 0

Function body:

hzProcess* GetThreadInfo (void)
{
   hzProcess*  phz ;
   pthread_t   tid ;
   uint32_t    n ;
   tid = pthread_self() ;
   for (n = 0; n < s_num_threads ; n++)
   {
       phz = s_actThreadReg[n] ;
       if (tid == phz->GetTID())
           return phz ;
   }
   return 0;
}