This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 9f9cc7eceb gdb/fs: use Value and Protocol for easy access and hinting new 412644fcf2 gdb: optimize memory commands new dd7203aff7 gdb/mm: move memleak to standalone file new 797f7a043d gdb/memdump: show prev and next node in address finding mode new 6d2ebfdec6 mm: dump node overheadp during memdump new 06a696076a gdb/memdump: reorganize the memdump parameters new f849092ede gdb/memdump: add option to parse memdump log from device new ee9673f62e gdb/memdump: add option to exclude nodes from specific PID new 8667f911bc gdb/mm: fix memdump when mempool backtrace is disabled new 41c4eb08c0 gdb/mm: fix prev free judging and region search new 358261af19 tools/gdb: avoid direct access to tcb['name'] The 10 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: mm/mempool/mempool.c | 15 +- mm/mm_heap/mm_memdump.c | 26 +- tools/gdb/nuttxgdb/memdump.py | 1262 +++++++++++------------------------- tools/gdb/nuttxgdb/memleak.py | 148 +++++ tools/gdb/nuttxgdb/mm.py | 669 +++++++++++++++++++ tools/gdb/nuttxgdb/prefix.py | 7 + tools/gdb/nuttxgdb/protocols/mm.py | 120 ++++ tools/gdb/nuttxgdb/stack.py | 2 +- tools/gdb/nuttxgdb/thread.py | 6 +- tools/gdb/nuttxgdb/utils.py | 7 + tools/parsememdump.py | 47 +- 11 files changed, 1388 insertions(+), 921 deletions(-) create mode 100644 tools/gdb/nuttxgdb/memleak.py create mode 100644 tools/gdb/nuttxgdb/mm.py create mode 100644 tools/gdb/nuttxgdb/protocols/mm.py