set_memory_check_list()

set_memory_check_list()#

Sets a global list of memory addresses to be checked for tracking memory allocations.

Prototype

void set_memory_check_list(unsigned long *memory_check_list);

Parameters

Key

Type

Description

memory_check_list

unsigned long *

Pointer to an array of memory addresses to be monitored.


Return Value

This function does not return a value.

Notes

This function is only available when CONFIG_TRACK_MEMORY is defined. It allows tracking specific memory allocations for debugging purposes.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples