Removed dump functions.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@973 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
425d5827d3
commit
91f1a558ce
|
@ -56,17 +56,6 @@ public:
|
|||
{
|
||||
delete[] storage;
|
||||
}
|
||||
void Dump( const char *s="" )
|
||||
{
|
||||
Info(( "%s - Size:%d, Allocation:%d, Storage:%p, Head:%p, Tail:%p", s, size, allocation, storage, head, tail ));
|
||||
}
|
||||
void FullDump( const char *s="" )
|
||||
{
|
||||
for ( int i = 0; i < size && i < 100; i++ )
|
||||
{
|
||||
Info(( "%d: %p - %02x\n", i, head+i, *(head+i) ));
|
||||
}
|
||||
}
|
||||
unsigned char *Head() const { return( head ); }
|
||||
unsigned char *Tail() const { return( tail ); }
|
||||
unsigned int Size() const { return( size ); }
|
||||
|
|
Loading…
Reference in New Issue