This file is indexed.

/usr/include/libMRML/include/CDebuggingMemoryManager.h is in libmrml1-dev 0.1.14-12.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// -*- mode: c++ -*-
#ifndef _CDEBUGMEMORYMANAGER
#define _CDEBUGMEMORYMANAGER
#include "libMRML/include/uses-declarations.h"
#include <iostream>
// -*- mode: c++ -*- 
/* 

    GIFT, a flexible content based image retrieval system.
    Copyright (C) 1998, 1999, 2000, 2001, 2002, CUI University of Geneva

     Copyright (C) 2003, 2004 Bayreuth University
      2005 Bamberg University
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    
*/
#include "libMRML/include/CMutex.h"
typedef long CDebuggingMemoryManagerSize;

// we will allocate a chunk of 10 megs
#define MEMSIZE 20000000

/** A structure, which is useful to maintain a twice connected
  list:
  A list of Chunks and a list of free/occupied chunks.
  This should normally be a local type, but there was an internal
  compiler error in GNU C++.
  */
struct lTChunk{
public:
  ///Previous Item in List
  lTChunk* mPrev;
  
  ///Following Item in List
  lTChunk* mNext;
  
  ///Previous Item in MEMORY
  lTChunk* mPreceding;
  
  ///Following Item in MEMORY
  lTChunk* mFollowing;
  
  /**Size of this Chunk.
    The Size could be deduced from mFollowing, but I consider
    this way as more general and cleaner.
    */
  CDebuggingMemoryManagerSize mSize;

  /** We will add to this some stuff to check
      if the end of this has been overwritten
   */
  
  /** Magic number, to see, if this Pointer was allocated using
    this->getMem() */
  long mMagic;
}; 

/** Class for memory management:
  This class gives you the full control about 1MByte of Memory.
  What is above will be allocated using the normal techniques.
  This is nice, if you are doubtful about the Libraries you use.
  */
class CDebuggingMemoryManager{
protected:

  /**Marking a Chunk as free and deleting him from the list
    whose member it presently is.*/
  void FreeChunk(lTChunk* inChunk);

  /**List of free memory chunks.*/
  lTChunk* mFreeList;
  /** List of used memory chunks. */
  lTChunk* mUsedList;

  /** THE memory used by this memory administrator. */
  lTChunk* mBuffer;

  /** The magic number for valid lTChunk nodes */
  const long cMagic;
  /** The magic number to invalidate lTChunk nodes */
  const long cUnMagic;

  /**  */
  long cVM;
  /** for multithreading */
  CMutex mMutex;
public:

  /**Constructor. 
    The Parameter is the size of the Buffer administered by the structure
    */
  CDebuggingMemoryManager(const CDebuggingMemoryManagerSize inSize);

  /** Getting Mem. */
  void* getMem(CDebuggingMemoryManagerSize inSize);

  /** Deleting Mem. */
  bool freeMem(void*);

  /**  */
  bool isValid()const;

  /**  */
  friend ostream& operator <<(ostream& outStream, 
			      const CDebuggingMemoryManager& inMem);
};

/** Output for diagnosis. */
ostream& operator<<(ostream& o, const CDebuggingMemoryManager& inMem);

/** One instance for the whole Program. */
extern CDebuggingMemoryManager gMemManager;

#endif