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
The following commit(s) were added to refs/heads/master by this push:
new 2cca9a2bdf9 pynuttx: update
2cca9a2bdf9 is described below
commit 2cca9a2bdf96111557fd0a56bce949050e200ae1
Author: Lars Kruse <[email protected]>
AuthorDate: Sun Feb 15 03:15:31 2026 +0100
pynuttx: update
Commit 6ed4ea63d renamed the function `mm_initialize` to
`mm_initialize_heap`.
This caused the pynuttx modules (e.g. `mm dump`) to be missing.
Signed-off-by: Lars Kruse <[email protected]>
---
tools/pynuttx/nxgdb/mm.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/pynuttx/nxgdb/mm.py b/tools/pynuttx/nxgdb/mm.py
index dbb1e56dec6..6a851613412 100644
--- a/tools/pynuttx/nxgdb/mm.py
+++ b/tools/pynuttx/nxgdb/mm.py
@@ -374,7 +374,7 @@ class MMNode(gdb.Value, p.MMFreeNode):
MM_MASK_BIT = MM_ALLOC_BIT | MM_PREVFREE_BIT
MM_SIZEOF_ALLOCNODE = utils.sizeof("struct mm_allocnode_s")
MM_ALLOCNODE_OVERHEAD = MM_SIZEOF_ALLOCNODE - utils.sizeof("mmsize_t")
- MM_MIN_CHUNK = utils.get_symbol_value("MM_MIN_CHUNK",
locspec="mm_initialize")
+ MM_MIN_CHUNK = utils.get_symbol_value("MM_MIN_CHUNK",
locspec="mm_initialize_heap")
def __init__(self, node: gdb.Value):
if node.type.code == gdb.TYPE_CODE_PTR: