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 813ba4d714bd14a61c84858be520bbd136b4ea5c Author: Zhe Weng <[email protected]> AuthorDate: Sat Sep 14 17:04:47 2024 +0800 tools/gdb: Add support for dq in list_check Tested: list_check &g_notifier_pending Signed-off-by: Zhe Weng <[email protected]> --- tools/gdb/nuttxgdb/lists.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/gdb/nuttxgdb/lists.py b/tools/gdb/nuttxgdb/lists.py index b96cdb6ea9..7fc6154c73 100644 --- a/tools/gdb/nuttxgdb/lists.py +++ b/tools/gdb/nuttxgdb/lists.py @@ -285,6 +285,8 @@ class ListCheck(gdb.Command): list_check(obj) elif obj.type == sq_queue_type.pointer(): sq_check(obj) + elif obj.type == dq_queue_type.pointer(): + dq_check(obj) else: raise gdb.GdbError("Invalid argument type: {}".format(obj.type))
