25#ifdef MEMORY_HANDLE_SENTINAL
71char* memory_strncpy_ptr(
char*,
const char*, uint16_t );
72int16_t memory_strncmp_ptr(
const char*,
const char*, uint16_t );
83void memory_debug_dump();
85#if !defined( MEMORY_PLATFORM_C ) && defined( MEMORY_FAKE_TRACE_LOCKS )
87#define stringify_handle( handle ) #handle
89#define memory_lock( handle ) memory_lock_wrapper( handle, stringify_handle( handle ), __func__ )
91#define memory_unlock( handle ) memory_unlock_wrapper( handle, stringify_handle( handle ), __func__ )
93#define memory_free( handle ) memory_free_wrapper( handle, stringify_handle( handle ), __func__ )
96 MEMORY_HANDLE handle,
const char* handle_name,
const char* caller );
99 MEMORY_HANDLE handle,
const char* handle_name,
const char* caller );
101void memory_free_wrapper(
102 MEMORY_HANDLE handle,
const char* handle_name,
const char* caller );
const void * CONST_MEMORY_PTR
A read-only MEMORY_PTR.
Definition: fakem.h:45
int16_t memory_strnlen_ptr(const char *s, uint16_t l)
Get the size of a string, up to a specified maximum.
WARN_UNUSED MEMORY_PTR memory_unlock(MEMORY_HANDLE handle)
Unlock a dynamic memory handle so the system can relocate it on the heap to relieve congestion.
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
WARN_UNUSED MEMORY_PTR memory_lock(MEMORY_HANDLE handle)
Lock a dynamic memory handle and return a MEMORY_PTR that can be dereferenced safely.
void memory_zero_ptr(MEMORY_PTR ptr, uint32_t sz)
Fill a block of memory with zeros.
void memory_free(MEMORY_HANDLE handle)
Free a block of dynamic memory previously allocated with memory_alloc().
MEMORY_HANDLE memory_alloc(uint32_t sz, uint32_t count)
Request dynamic memory from operating system while protecting from overflow conditions.
An emulated memory handle for modern systems. Overridden on most platforms.
Definition: memory.h:20