Return TypeFunction nameArguments
voidSetThreadLogger(hzLogger*,)

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

Function Logic:

0:START 1:GetThreadInfo phz 2:!phz 3:pthread_self Fatal hzProcess::GetLog 4:!phz->GetLog() 5:hzProcess::SetLog 6:!s_pDfltLog 7:s_pDfltLog 8: No text

Function body:

void SetThreadLogger (hzLogger* pLog)
{
   hzProcess*  phz ;
   phz = GetThreadInfo() ;
   if (!phz)
       Fatal("SetThreadLogger. Thread %u not registered\n", pthread_self()) ;
   if (!phz->GetLog())
       phz->SetLog(pLog) ;
   if (!s_pDfltLog)
       s_pDfltLog = pLog ;
}