From: Thorsten O. <ad...@th...> - 2025-09-23 15:10:05
|
On Dienstag, 23. September 2025 14:45:09 CEST Jo Even Skarstein via Freemint- discuss wrote: > if I understand you correctly then the docs means "memory currently > allocated to a process or the kernel" Yes, i think that is what was actually meant there. Reading memory that is not assigned to any process would just return random garbage. > It would be useful to be able to inspect these when a process is terminated > due to a memory violation. For that you would have to know where the program stores what. Might make more sense to compile the program with the elf toolchain, and run it in gdb to see where it crashes (yes i know, thats not your favorite option). The address that actually caused the memory violation will also be helpful. |