Home | History | Annotate | Download | only in strace

Lines Matching full:system

8 I have seen two mechanisms which support system call tracing.  They
10 ptrace system call and the PIOCSENTRY/PIOCSEXIT ioctl for the /proc
11 filesystem under System V release 4 style Unix derived systems. There
18 operating system, system call tracing is a lost cause. If there is a
19 native system call tracing program (however pathetic it might be :-),
21 it is using for tracing the system calls of another process. If the
37 the specific system call communicated, how are system call arguments
48 Next you need to determine how to decode numeric system call numbers
49 into system call names (syscallent.h), errno values into errno names
51 this fragile step can be accomplished by massaging system header files
55 Finally, once you have the basic framework in which system calls and
63 The first order of decoding is the generation of suitable system call,