I've been trying to use the system call "ptrace" (using the PTRACE_SINGLESTEP macro) to trace the execution of a simple application.

While recording the execution of the program I would like to skip the useless part of the reading to only follow from the 'main' of my application. Because whenever I launch my tracer I get around 100k execution steps.

Cordialy

link|improve this question
Could you share your original program, which prints every executed address? I have no ptrace experience and I would be interested to examine such a simple example of its usage. – eschulte Dec 14 '11 at 2:31
feedback

1 Answer

up vote 3 down vote accepted

You may want to insert a breakpoint at main entry, wait for a SIGTRAP to arrive, restore the instruction under the breakpoint, and single-step from there.

link|improve this answer
Thank you for your answer, i'll try to do that ! – Anhuin May 26 '11 at 10:09
feedback

Your Answer

 
or
required, but never shown

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