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:
Yao Qi
2016-02-19 15:51:03 +00:00
parent 841fdfcdd9
commit 253b4d3a09
3 changed files with 28 additions and 0 deletions

View File

@ -2302,6 +2302,21 @@ Do you want to stop the program?"),
}
break;
case gdb_sys_fallocate:
case gdb_sys_eventfd2:
case gdb_sys_epoll_create1:
case gdb_sys_dup3:
break;
case gdb_sys_pipe2:
regcache_raw_read_unsigned (regcache, tdep->arg1, &tmpulongest);
if (record_full_arch_list_add_mem ((CORE_ADDR) tmpulongest,
tdep->size_int * 2))
break;
case gdb_sys_inotify_init1:
break;
default:
printf_unfiltered (_("Process record and replay target doesn't "
"support syscall number %d\n"), syscall);