Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
it wud be nice to know what OS we r talking abt.. – user1974729 Jan 27 at 9:27
It is possible. – Mikhail Jan 27 at 9:43
Right now am looking for Windows, Sir. – Ganapa Jan 27 at 10:32
You can attach debugger to the process and dump all data what you want using debugger commands and priviate symbol files for your exe. – sergmat Jan 28 at 13:03
Thank you sir. But where can I get the information regarding attaching debugger to process?? Do you mean the one provided in the IDE (ex:Visual studio , Eclipse)? – Ganapa Jan 29 at 17:08

1 Answer

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 cat /proc/process's pid folder in linux, there to you can get a variety of information about the running process.
Ofcourse you can use a debugger to get the process's state as it is executing

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.