In my program, I want to intercept every system call at user-level within the same process (I don't want to use a separate process such as ptrace or a tool such as strace). I also don't want to use LD_PRELOAD. How can I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Use C macros. It works like this:
|
|||||||||||||
|
LD_PRELOADcan be used to intercept system calls anyway. – Job May 9 '12 at 12:05