blob: 33939f7dd757aac5172a6410ca9f12f7213c2e38 (
plain)
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
|
/*
* CENA C++ Utilities
*
* by Stephane Chatty
*
* Copyright 1992
* Centre d'Etudes de la Navigation Aerienne (CENA)
*
* Memory allocation (original C version by Michel Beaudouin-Lafon)
*
* $Id$
* $CurLog$
*/
#ifndef Allocator_H_
#define Allocator_H_
#include "cplus_bugs.h"
class CcuAllocator {
private:
static void MemoryOverflow ();
unsigned int BlockSize;
unsigned int ChunkSize;
void* FreeList; /* list of free blocks of memory */
void* AllocEnd; /* end of the last chunk */
void* AllocNext; /* room left in the last chunk */
public:
CcuAllocator (unsigned int);
~CcuAllocator ();
void* Alloc ();
void Free (void*);
};
#ifndef CPLUS_BUG19
template <class OBJECT> class CcuAllocatorOf : public CcuAllocator {
public:
inline CcuAllocatorOf () : CcuAllocator (sizeof (OBJECT)) {}
inline OBJECT* Alloc () { return (OBJECT*) CcuAllocator::Alloc (); }
};
#endif
#endif /* Allocator_H_ */
|