Go to the source code of this file.
◆ NEW_HANDLER
#define NEW_HANDLER |
( |
| ) |
throw std::bad_alloc(); |
◆ GetMemoryUsageInternalInfo()
◆ odrxAlloc()
Defines the interface for ODA Platform memory management.
Allocates a block of memory.
- Parameters
-
nBytes | [in] Number of bytes to allocate. |
- Returns
- Returns a pointer to the newly allocated memory block.
- See also
- Memory Management
◆ odrxFree()
Frees a block of memory.
- Parameters
-
pMemBlock | [in] Pointer to the previously allocated memory block. |
- See also
- Memory Management
◆ odrxRealloc()
Reallocates a block of memory.
- Parameters
-
pMemBlock | [in] Pointer to the previously allocated memory block. |
newSize | [in] New size in bytes. |
oldSize | [in] Old size in bytes. |
- Returns
- Returns a pointer to the newly allocated memory block.
- See also
- Memory Management