You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/06/07 15:13:01 UTC

[GitHub] [incubator-nuttx] gustavonihei opened a new pull request, #6385: mm: Log name of the Heap to which the new region is being added

gustavonihei opened a new pull request, #6385:
URL: https://github.com/apache/incubator-nuttx/pull/6385

   ## Summary
   This PR intends to improve the logging of `mm_addregion` function by informing the name of the Heap to which the new region is being added.
   
   ## Impact
   Increase in debug information, should not have any real impact.
   
   ## Testing
   `esp32c3-devkit:knsh`
   
   ### Before
   ```
   mm_initialize: Heap: name=Umem, start=0x3fc905ac size=322228
   mm_addregion: Region 1: base=0x3fc90704 size=321872
   up_allocate_kheap: Heap: start=3fc83068 end=3fc90000 size=53144
   mm_initialize: Heap: name=Kmem, start=0x3fc83068 size=53144
   mm_addregion: Region 1: base=0x3fc831c4 size=52784
   ```
   ###After
   ```
   mm_initialize: Heap: name=Umem, start=0x3fc905ac size=322228
   mm_addregion: [Umem] Region 1: base=0x3fc90704 size=321872
   up_allocate_kheap: Heap: start=3fc83068 end=3fc90000 size=53144
   mm_initialize: Heap: name=Kmem, start=0x3fc83068 size=53144
   mm_addregion: [Kmem] Region 1: base=0x3fc831c4 size=52784
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6385: mm: Log name of the Heap to which the new region is being added

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 merged PR #6385:
URL: https://github.com/apache/incubator-nuttx/pull/6385


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org