In general is there any way to get the details of the process (the process to which my program is translated to by the OS before execution). Is it possible to output the contents of the data structures (PCB for example) while my program is executing as a process?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I recommend running the program in linux .. you can then use readlf and objdump to get lot of information about the process(like its address space, dynamically linked libraries from glibc Ex:printf(), its symbol table etc)...
u can also see |
|||
|
|