summaryrefslogtreecommitdiff
path: root/hello/both_hello/hello-deep.ini
diff options
context:
space:
mode:
Diffstat (limited to 'hello/both_hello/hello-deep.ini')
-rw-r--r--hello/both_hello/hello-deep.ini48
1 files changed, 48 insertions, 0 deletions
diff --git a/hello/both_hello/hello-deep.ini b/hello/both_hello/hello-deep.ini
new file mode 100644
index 0000000..e3f486b
--- /dev/null
+++ b/hello/both_hello/hello-deep.ini
@@ -0,0 +1,48 @@
+;
+; RTEMS Trace Linker Configuration: hello deep
+;
+; This script configure the both hello example to perform deep
+; tracing of RTEMS via the printf trace generator.
+;
+[tracer]
+;
+; Name of the trace.
+;
+name = Hello Deep RTEMS Tracer
+;
+; Options can be defined here or on the command line.
+;
+;options = verbose, verbose
+options = dump-on-error
+;
+; Functions to trace.
+;
+traces = hello-deep-trace
+traces = rtems-score-object-all
+traces = rtems-score-thread-all
+traces = rtems-score-heap-all
+traces = rtems-score-coremutex-all
+;
+; Define the function sets. These are the function's that can be
+; added to the trace lists.
+;
+functions = hello-deep-trace
+functions = rtems-score
+;
+; Include RTEMS Trace support.
+;
+include = rtems.ini, rtld-base.ini
+
+;
+; User application trace example.
+;
+[hello-deep-trace]
+generator = printk-generator
+signatures = hello-signatures
+trace = exit, Init, POSIX_Init
+header = "#include <rtems.h>"
+
+[hello-signatures]
+exit=void, int
+Init = void, rtems_task_argument
+POSIX_Init = void*, void*