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.
feedback
|
|
You can use thread id instead of pid in ptrace and it should work fine. However thread management needs to be done by you. | ||||
feedback
|