[Solved] Process memory examination

pthread_t resources are not released. You should call pthread_detach or pthread_join, otherwise the pthread_t value remains valid consumes resources and I can guess that happens in this case. 0 solved Process memory examination

[Solved] How to analyse a coredump file of GDB [closed]

GDB can get you started: $ gdb –help This is the GNU debugger. Usage: gdb [options] [executable-file [core-file or process-id]] gdb [options] –args executable-file [inferior-arguments …] [snip extended docs] So, you’ll invoke it like this: gdb myprog core GDB will then start in the usual way, but the state will be as if you’d stopped … Read more