vote up 2 vote down star
1

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.

flag

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 at 18:11
That's a good point. – ktulur May 15 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 at 2:55

2 Answers

vote up 0 vote down

There is not direct equivalent for ptrace, but if you want a Linux program to run under Windows why not use Cygwin?

link|flag
Not trying to run any Linux program under Windows. Not a compatibility question. Thanks anyway. – ktulur May 18 at 18:38
Cygwin doesn't provide ptrace functionality. – Alan S Nov 17 at 14:26
vote up 1 vote down

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

link|flag
The question is more about how does ProcMon works... – ktulur May 18 at 18:38

Your Answer

Get an OpenID
or

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