summaryrefslogtreecommitdiffstats
path: root/docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md
diff options
context:
space:
mode:
authorgrowupboron <shankhoghosh123@gmail.com>2020-10-09 00:19:18 +0530
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-10-14 11:19:53 +0000
commiteefc3ab6cbb8a5901632f46d99e13c8d90b2415d (patch)
tree90815d532ed7b2d0962a1468aee29f05a4404eef /docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md
parent4aad369c9728061c97b3de792286e743ee884b09 (diff)
rewrote quickstart, build-process
Revamped and updated documentation to install and build AGL images. (removed whitespaces, added contribution guide, corrected rcar-gen3 section 7, added aglsetup.h flags to hardware support, some minor changes) Bug-AGL: [SPEC-3633] Signed-off-by: Shankho Boron Ghosh <shankhoghosh123@gmail.com> Change-Id: Iedb6c7dc1661f4bc58b5f25ea5d188778c7ff908 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25407 Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md')
-rw-r--r--docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md45
1 files changed, 0 insertions, 45 deletions
diff --git a/docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md b/docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md
deleted file mode 100644
index 12de531..0000000
--- a/docs/4_APIs_and_Services/4.3_Application_Framework_Binder/6_Annexes/5_Debuggin_binder_and_bindings.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-edit_link: ''
-title: Debugging binder and bindings
-origin_url: >-
- https://git.automotivelinux.org/src/app-framework-binder/plain/docs/afb-daemon-debugging.md?h=master
----
-
-<!-- WARNING: This file is generated by fetch_docs.js using /home/boron/Documents/AGL/docs-webtemplate/site/_data/tocs/apis_services/master/app-framework-binder-developer-guides-api-services-book.yml -->
-
-# 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.