|
OpenRTM-aist
1.1.2
|
#include <Allocator.h>
Public Member Functions | |
| virtual | ~Allocator () |
| Destructor. More... | |
| virtual void * | New (size_t t) throw (std::bad_alloc) |
| Create of memory allocation. More... | |
| virtual void | Delete (void *p) throw () |
| Delete of memory allocation. More... | |
| virtual void * | NewArray (size_t t) throw (std::bad_alloc) |
| Create of array memory allocation. More... | |
| virtual void | DeleteArray (void *p) throw () |
| Delete of array memory allocation. More... | |
Additional Inherited Members | |
Public Types inherited from coil::Singleton< Allocator > | |
| typedef Allocator * | SingletonClassPtr |
| typedef ::coil::Mutex | Mutex |
Static Public Member Functions inherited from coil::Singleton< Allocator > | |
| static Allocator & | instance () |
| Create instance. More... | |
Protected Member Functions inherited from coil::Singleton< Allocator > | |
| Singleton () | |
| Constructor. More... | |
| ~Singleton () | |
| Destructor. More... | |
Static Protected Attributes inherited from coil::Singleton< Allocator > | |
| static coil::Mutex | m_mutex |
| Mutual exclusion object. More... | |
| static Allocator * | m_instance |
| SingletonClass object. More... | |
Allocator class.
|
inlinevirtual |
|
virtual | ||||||||||||||
Delete of memory allocation.
Delete of memory allocation.
| p | Pointer to a memory allocation. |
Referenced by ~Allocator().
|
virtual | ||||||||||||||
Delete of array memory allocation.
Delete of array memory allocation.
| p | Pointer to a memory allocation. |
Referenced by ~Allocator().
|
virtual | ||||||||||||||
Create of memory allocation.
Create of memory allocation.
| t | Allocation size. |
Referenced by ~Allocator().
|
virtual | ||||||||||||||
Create of array memory allocation.
Create of array memory allocation.
| t | Allocation size. |
Referenced by ~Allocator().
1.8.11