I am interested in running a multithreaded application in the supervision of another monitoring process. The monitoring process should be able to get and set CPU registers of all the threads in the monitored application. I know how to do this for a single threaded application. But I'm interested in knowing how to extend this for multithreaded applications.

link|improve this question

70% accept rate
Seems like I have asked a very difficult question. – MetallicPriest Aug 12 '11 at 18:47
feedback

1 Answer

You can use thread id instead of pid in ptrace and it should work fine. However thread management needs to be done by you.

link|improve this answer
So u mean I will have to wait for each thread separately using waitpid to get or modify their registers? – MetallicPriest Aug 13 '11 at 10:01
feedback

Your Answer

 
or
required, but never shown

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