mirror of
https://github.com/apache/nuttx.git
synced 2026-08-15 17:33:18 +00:00
tools/gdb: Add support for dq in list_check
Tested: list_check &g_notifier_pending Signed-off-by: Zhe Weng <wengzhe@xiaomi.com>
This commit is contained in:
parent
1485ecd28e
commit
813ba4d714
1 changed files with 2 additions and 0 deletions
|
|
@ -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))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue