The Gaudi Framework  v30r3 (a5ef0a68)
IgHookTraceAlloc Class Reference

#include <src/component/IgHook_IgHookTrace.h>

Public Member Functions

 IgHookTraceAlloc (void)
 
void * allocate (size_t bytes)
 

Private Attributes

void * m_pool
 
size_t m_left
 

Detailed Description

Definition at line 16 of file IgHook_IgHookTrace.h.

Constructor & Destructor Documentation

IgHookTraceAlloc::IgHookTraceAlloc ( void  )

Definition at line 99 of file IgHook_IgHookTrace.cpp.

99 : m_pool( 0 ), m_left( 0 ) {}

Member Function Documentation

void * IgHookTraceAlloc::allocate ( size_t  bytes)

Definition at line 101 of file IgHook_IgHookTrace.cpp.

102 {
103  // The reason for the existence of this class is to allocate
104  // memory directly using mmap() so we don't create calls to
105  // malloc() and friends. This is for two reasons: it must be
106  // possible to use this in asynchronous signal handlers, and
107  // calling malloc() in those is a really bad idea; and this is
108  // meant to be used by profiling code and it's nicer to not
109  // allocate memory in ways tracked by the profiler.
110  if ( m_left < bytes ) {
111  size_t psize = getpagesize();
112  size_t hunk = psize * 20;
113  if ( hunk < bytes ) hunk = ( hunk + psize - 1 ) & ~( psize - 1 );
114  void* addr = mmap( 0, hunk, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0 );
115  if ( addr == MAP_FAILED ) return 0;
116 
117  m_pool = addr;
118  m_left = hunk;
119  }
120 
121  void* ptr = m_pool;
122  m_pool = (char*)m_pool + bytes;
123  m_left -= bytes;
124  return ptr;
125 }

Member Data Documentation

size_t IgHookTraceAlloc::m_left
private

Definition at line 25 of file IgHook_IgHookTrace.h.

void* IgHookTraceAlloc::m_pool
private

Definition at line 24 of file IgHook_IgHookTrace.h.


The documentation for this class was generated from the following files: