mirror of
https://git.rtems.org/rtems-tools/
synced 2025-06-11 08:34:59 +08:00

These files allow you to trace malloc, calloc, realloc and free. With a simple script you can see what is allocated and never freed.
18 lines
303 B
INI
Executable File
18 lines
303 B
INI
Executable File
;
|
|
; RTEMS C Library Trace Configurations
|
|
;
|
|
[libc]
|
|
headers = libc-headers
|
|
defines = libc-defines
|
|
; Heap
|
|
include = libc-heap.ini
|
|
signatures = libc-heap-signatures
|
|
|
|
[libc-headers]
|
|
header = "#include <stddef.h>"
|
|
header = "#include <stdlib.h>"
|
|
header = "#include <stdio.h>"
|
|
|
|
[libc-defines]
|
|
; Currently empty
|