System memory manager. More...
#include <kanzi/core/legacy/memory/kzc_memory_common.hpp>
#include <kanzi/core/legacy/kzs_types.hpp>
#include <kanzi/core/legacy/debug/kzs_error.hpp>
Functions | |
KANZI_API kzsError | kzcMemoryManagerCreateSystemManager (struct KzcMemoryManager **out_manager) |
Creates a new memory manager, which allocates and deallocates memory with the C library's malloc() and free() functions. More... | |
System memory manager.
System memory manager simply allocates and deallocates memory with the C library's malloc() and free() functions. This memory manager is thread-safe in POSIX-compatible operating systems. When using KzaApplication, the system memory manager returned by ::kzaApplicationGetSystemMemoryManager() can be used.
Copyright 2008-2017 by Rightware. All rights reserved.
KANZI_API kzsError kzcMemoryManagerCreateSystemManager | ( | struct KzcMemoryManager ** | out_manager | ) |
Creates a new memory manager, which allocates and deallocates memory with the C library's malloc() and free() functions.
out_manager | A pointer that is set to point to the new memory manager on success. |