summaryrefslogtreecommitdiffstats
path: root/linkers/libc-heap.ini
diff options
context:
space:
mode:
Diffstat (limited to 'linkers/libc-heap.ini')
-rwxr-xr-xlinkers/libc-heap.ini25
1 files changed, 25 insertions, 0 deletions
diff --git a/linkers/libc-heap.ini b/linkers/libc-heap.ini
new file mode 100755
index 0000000..bb7589a
--- /dev/null
+++ b/linkers/libc-heap.ini
@@ -0,0 +1,25 @@
+;
+; RTEMS C Library Trace Configurations
+;
+[libc-heap]
+headers = libc-heap-headers
+defines = libc-heap-defines
+signatures = libc-heap-signatures
+
+[libc-heap-all]
+trace = malloc
+trace = calloc
+trace = realloc
+trace = free
+
+[libc-heap-headers]
+header = "#include <stdlib.h>"
+
+[libc-heap-defines]
+; Currently empty
+
+[libc-heap-signatures]
+malloc = void*, size_t
+calloc = void*, size_t, size_t
+realloc = void*, void*, size_t
+free = void, void*