Skip to content

Commit

Permalink
Merge pull request #1 from timurakhmadeev/tiak/add-syscalls-with-fd
Browse files Browse the repository at this point in the history
add few syscalls to report dir as filename
  • Loading branch information
timurakhmadeev committed Mar 17, 2021
2 parents ad61a4d + 3877164 commit f1b7bf6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/0xtools/proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,10 @@ def get_system_call_names():
, syscall_name_to_id['epoll_wait']
, syscall_name_to_id['ioctl']
, syscall_name_to_id['accept']
, syscall_name_to_id['accept4']
, syscall_name_to_id['accept4']
, syscall_name_to_id['getdents']
, syscall_name_to_id['getdents64']
, syscall_name_to_id['unlinkat']
])

special_fds = { 0:'(stdin) ', 1:'(stdout)', 2:'(stderr)' }
Expand Down

0 comments on commit f1b7bf6

Please sign in to comment.