Following is my requirement.

while process A is running.

  1. attach Process A from B with PTRACE_ATTACH.
  2. Start a Loop
  3. Stop Process A
  4. read registers
  5. Resume Process A
  6. sleep(1)
  7. end loop
  8. detach A

i am facing issue with Start and Resume Process A from the loop. i tried combination of kill(pid,SIGSTOP), kill(pid,SIGCONT), PTRACE_CONT. but didnt work.

any other solutions please?

Thanks in advance. Sandeep

link|improve this question

17% accept rate
social.msdn.microsoft.com/Forums/en/netfxtoolsdev/thread/… relevant link for windows.. – Sandeep P Jul 29 '10 at 8:04
please post your code – osgx Aug 19 '10 at 16:29
kill() to stop and PTRACE_CONT is to continue is the right combination. Most debuggers use SIGINT (instead of SIGSTOP) to stop the process, you could try that. But I'm guessing that you made some other error, you'll have to post your code. – Fabian Oct 27 '10 at 10:08
feedback

2 Answers

Sounds like a very challenging project to undertake from scratch. Have you considered leveraging the GNU debugger in any way? In particular there is an long running sub-project called libgdb2 which may suit your purposes even though it is far from finished or stable at this time.

link|improve this answer
no, i did not use GNU debugger.. – Sandeep P Jul 7 '10 at 11:08
feedback

You could try scripting/interfacing with gdb in the same way that a lot of IDE's do. See also http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/gdb/gdb-mi.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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