This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 30b1660cc2fc037bfb964e84e22e0b83d9637a4d Author: Ludovic Vanasse <[email protected]> AuthorDate: Mon Oct 14 12:08:32 2024 -0400 Doc: Migrate Disabling the Stack Dump During Debugging Migrate https://cwiki.apache.org/confluence/display/NUTTX/Disabling+the+Stack+Dump+During+Debugging to the official wiki Signed-off-by: Ludovic Vanasse <[email protected]> --- Documentation/guides/disabling_stackdumpdebug.rst | 15 +++++++++++++++ Documentation/guides/index.rst | 1 + 2 files changed, 16 insertions(+) diff --git a/Documentation/guides/disabling_stackdumpdebug.rst b/Documentation/guides/disabling_stackdumpdebug.rst new file mode 100644 index 0000000000..7921480118 --- /dev/null +++ b/Documentation/guides/disabling_stackdumpdebug.rst @@ -0,0 +1,15 @@ +========================================= +Disabling the Stack Dump During Debugging +========================================= + +.. warning:: + Migrated from: + https://cwiki.apache.org/confluence/display/NUTTX/Disabling+the+Stack+Dump+During+Debugging + +The stack dump routine can clutter the output of GDB during debugging. +To disable it, set this configuration option in the defconfig file of +the board configuration: + +.. code-block:: c + + CONFIG_ARCH_STACKDUMP=n \ No newline at end of file diff --git a/Documentation/guides/index.rst b/Documentation/guides/index.rst index 28071cea93..a10ecdabe4 100644 --- a/Documentation/guides/index.rst +++ b/Documentation/guides/index.rst @@ -39,3 +39,4 @@ Guides changing_systemclockconfig.rst usingkernelthreads.rst armv7m_runtimestackcheck.rst + disabling_stackdumpdebug.rst
