views:

73

answers:

1

What system calls are used? I want to use it to read memory locations scattered inside a different process's address space. Is this a reasonable use case for this mechanism?

+5  A: 

ptrace() is the system call you're looking for.

Richard Pennington