aboutsummaryrefslogtreecommitdiffstats
path: root/docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2022-01-26 12:25:31 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2022-02-02 11:50:02 +0000
commit8160b5cdc8547277f3f31ee1e41524754d5d987d (patch)
tree6ebbcfa9802c82de6b552733ef53d411247e1cdd /docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md
parent835363f430c5dee0b53b7c415572cdfdcc02ad18 (diff)
Update to documentation before Marlinmarlin_12.92.0marlin/12.92.012.92.0
This is mostly a cleanup before the Magic Marlin Release. We do have the Application Framework chapter rewrite pending. Bug-AGL: SPEC-4236 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Change-Id: I7e1f39667b4db417497b1d0c84065c173fa18439 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/27097
Diffstat (limited to 'docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md')
-rw-r--r--docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md b/docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md
deleted file mode 100644
index dbb9bdd..0000000
--- a/docs/3_Developer_Guides/2_Application_Framework_Binder/Annexes/5_Debugging_binder_and_bindings.md
+++ /dev/null
@@ -1,38 +0,0 @@
----
-title: Debugging binder and bindings
----
-
-When compiled with the symbol AGL_DEVEL defined, the ***binder***
-understands the 2 configuration variables:
-
- - AFB_DEBUG_BREAK: to emit interrupts
- - AFB_DEBUG_WAIT: to wait interrupts
-
-To use these variables, assign it the list of break or wait points
-to reach.
-
-Example:
-
-```bash
-$ AFB_DEBUG_BREAK=main-entry AFB_DEBUG_WAIT=start-load,start-exec afb-daemon ....
-```
-
-This tells to ***afb-daemon*** to break at the point **main-entry** and to
-wait at the points **start-load** and **start-exec**.
-
-The items of the list can be separated using comma, space, tab or new-line.
-
-The break/wait points are, in the order of their occurrence:
-
-- main-entry: before decode arguments
-- main-args: before daemon setup
-- main-start: before starting jobs
-- start-entry: before initialisation of sessions and hooks
-- start-load: before load and pre-init of bindings
-- start-start: before init of bindings
-- start-http: before start of http server
-- start-call: before execution of requests of the command line (option --call)
-- start-exec: before execution of child preocees
-
-Note also that a call to 'personality' is inserted just after
-the point start-start. \ No newline at end of file