mirror of
https://github.com/apache/nuttx.git
synced 2026-05-30 21:36:28 +08: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:
@@ -285,6 +285,8 @@ class ListCheck(gdb.Command):
|
|||||||
list_check(obj)
|
list_check(obj)
|
||||||
elif obj.type == sq_queue_type.pointer():
|
elif obj.type == sq_queue_type.pointer():
|
||||||
sq_check(obj)
|
sq_check(obj)
|
||||||
|
elif obj.type == dq_queue_type.pointer():
|
||||||
|
dq_check(obj)
|
||||||
else:
|
else:
|
||||||
raise gdb.GdbError("Invalid argument type: {}".format(obj.type))
|
raise gdb.GdbError("Invalid argument type: {}".format(obj.type))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user