reSIProcate/rutil  9694
Functions | Variables
Log.cxx File Reference
#include "rutil/Socket.hxx"
#include <cassert>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include "rutil/Data.hxx"
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#include "rutil/Log.hxx"
#include "rutil/Logger.hxx"
#include "rutil/ParseBuffer.hxx"
#include "rutil/ThreadIf.hxx"
#include "rutil/Subsystem.hxx"
#include "rutil/SysLogStream.hxx"
#include "rutil/WinLeakCheck.hxx"
Include dependency graph for Log.cxx:

Go to the source code of this file.

Functions

void freeThreadSetting (void *setting)
void freeLocalLogger (void *pThreadData)

Variables

static const Data log_ ("LOG_")

Function Documentation

void freeLocalLogger ( void *  pThreadData)

Definition at line 69 of file Log.cxx.

References resip::Log::mLocalLoggerMap.

Referenced by resip::LogStaticInitializer::LogStaticInitializer().

   {
      if (pThreadData)
      {
         // There was some local logger installed. Decrease its use count before we
         // continue.
         Log::mLocalLoggerMap.decreaseUseCount((static_cast<Log::ThreadData*>(pThreadData))->id());
      }
   }
void freeThreadSetting ( void *  setting)

Definition at line 64 of file Log.cxx.

Referenced by resip::LogStaticInitializer::LogStaticInitializer().

   {
      delete static_cast<Log::ThreadSetting*>(setting);
   }

Variable Documentation

const Data log_("LOG_") [static]

Referenced by resip::Log::toString().