Tagged Questions

1
vote
2answers
412 views

Object files in an executable in Linux

Is there a way to find the object files from which the current executable is generated in Linux (RHEL to be specific). I understand that one can use "nm" to find the exported symbols, "ldd" to find ...
0
votes
1answer
107 views

Implementing tool that tracks down C memory errors, finding where my overrided malloc etc is called from

I've been asked to implement a tool ( for linux ) which helps with the memory management of C/C++ programs. Main objective is to track down memory leaks but I am also checking for overlapping ...