|
Call-back function before execution of a system call.
|
|
Call-back function after execution of a system call.
|
|
Register a notification function that is called immediately before execution of a system call.
|
|
Register a notification function that is called immediately after execution of a system call.
|
|
Get the value of the argument of the system call to be executed in the specified context.
|
|
Get the error code of the system call which is just returned with the specified context.
|
|
Get the number (ID) of the system call to be executed in the specified context. If you need the system call number in a SYSCALL_EXIT_CALLBACK, you should use a SYSCALL_ENTRY_CALLBACK to save the system call number into thread local storage so that you can get it from there in your SYSCALL_EXIT_CALLBACK. Beware, though of interruptable system calls, to handle those you will need to worry about other context changes (see the discussion in PIN_AddSyscallExitFunction ).
|
|
Get the return value of the system call which has just returned with the specified context.
|
|
Set the given value for the argument of the system call to be executed in the specified context.
|
|
Set the number (ID) of the system call to be executed in the specified context.
|