up vote 4 down vote favorite
2
share [g+] share [fb]

Reading http://stackoverflow.com/questions/864839/monitoring-certain-system-calls-done-by-a-process I'm wondering about a Windows equivalent to the ptrace syscall or a programatically workaround.

I had an answer in http://stackoverflow.com/questions/865106/is-there-something-like-linux-ptrace-syscall-in-windows but It requires a recent Windows version.

link|improve this question

1  
One thing to note here is that unlike linux, windows syscalls are undocumented and may change between versions. You might be better off setting a breakpoint in a higher level DLL... – bdonlan May 15 '09 at 18:11
That's a good point. – ktulur May 15 '09 at 18:20
Well ptrace is a very "versatile" function. There are functions for many of ptrace's functionalities in Windows, but there's not one single function that does them all (this is arguably a good thing). What exactly do you aim to do? – Logan Capaldo Jul 6 '09 at 2:55
feedback

1 Answer

ProcMon is a sysinternals utility for doing that. Get it here.

link|improve this answer
2  
The question is more about how does ProcMon works... – ktulur May 18 '09 at 18:38
feedback

Your Answer

 
or
required, but never shown

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