fjpanag commented on issue #6641: URL: https://github.com/apache/incubator-nuttx/issues/6641#issuecomment-1191206595
I too observe this issue, and I just spent some time debugging it. If you enable `CONFIG_MM_BACKTRACE`, then `ps` will work correctly. The root cause is that heap information printing in `ps` is controlled by `CONFIG_DEBUG_MM`. This can be seen [here](https://github.com/apache/incubator-nuttx/blob/master/fs/procfs/fs_procfsproc.c#L93). However, the actual implementation of this depends on `CONFIG_MM_BACKTRACE`. You can see this [here](https://github.com/apache/incubator-nuttx/blob/master/fs/procfs/fs_procfsproc.c#L1578). -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
