I am using Pintool to analyze a 32-bit program under Windows, and now I want to capture the system calls generated by the program. I know how to use PIN_ AddSyscallEntryFunction()
and PIN_ GetSyscallNumber()
gets the number of the system call, but I don't know how to get the specific name.
For example, I analyzed some system calls triggered by the program using ida: GetModuleFileNameA
, OpenSCManagerA
, OpenServiceA
, CreateServiceA
and so on