mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
Support more syscalls in linux-record: pipe2 epoll_create1 eventfd2 fallocate dup3 and inotify_init1
This patch adds more syscalls in linux-record. gdb: 2016-02-29 Yao Qi <yao.qi@linaro.org> * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New. <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New. <gdb_sys_pipe2, gdb_sys_inotify_init1>: New. * linux-record.c (record_linux_system_call): Handle them.
This commit is contained in:
@ -504,6 +504,12 @@ enum gdb_syscall {
|
||||
gdb_sys_move_pages = 317,
|
||||
gdb_sys_getcpu = 318,
|
||||
gdb_sys_epoll_pwait = 319,
|
||||
gdb_sys_fallocate = 324,
|
||||
gdb_sys_eventfd2 = 328,
|
||||
gdb_sys_epoll_create1 = 329,
|
||||
gdb_sys_dup3 = 330,
|
||||
gdb_sys_pipe2 = 331,
|
||||
gdb_sys_inotify_init1 = 332,
|
||||
gdb_sys_socket = 500,
|
||||
gdb_sys_connect = 501,
|
||||
gdb_sys_accept = 502,
|
||||
|
Reference in New Issue
Block a user