#include <stdlib.h>
#include "Alloc.h"
Go to the source code of this file.
void* MyAlloc |
( |
size_t |
size | ) |
|
Definition at line 23 of file Alloc.cc.
References AlCaHLTBitMon_ParallelJobs::p.
Referenced by SzAlloc().
27 #ifdef _SZ_ALLOC_DEBUG
29 void *
p = malloc(
size);
30 fprintf(stderr,
"\nAlloc %10d bytes, count = %10d, addr = %8X",
size, g_allocCount++, (
unsigned)p);
tuple size
Write out results.
void MyFree |
( |
void * |
address | ) |
|
Definition at line 38 of file Alloc.cc.
Referenced by SzFree().
40 #ifdef _SZ_ALLOC_DEBUG
42 fprintf(stderr,
"\nFree; count = %10d, addr = %8X", --g_allocCount, (
unsigned)
address);