Decode FreeBSD11 fstatat calls.

This commit is contained in:
Mark Johnston 2017-07-19 23:34:28 +00:00
parent d8c2808fcf
commit 75a14d2220
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=321258

View File

@ -148,6 +148,9 @@ static struct syscall decoded_syscalls[] = {
.args = { { Int, 0 } } },
{ .name = "compat11.fstat", .ret_type = 1, .nargs = 2,
.args = { { Int, 0 }, { Stat11 | OUT, 1 } } },
{ .name = "compat11.fstatat", .ret_type = 1, .nargs = 4,
.args = { { Atfd, 0 }, { Name | IN, 1 }, { Stat11 | OUT, 2 },
{ Atflags, 3 } } },
{ .name = "compat11.lstat", .ret_type = 1, .nargs = 2,
.args = { { Name | IN, 0 }, { Stat11 | OUT, 1 } } },
{ .name = "compat11.stat", .ret_type = 1, .nargs = 2,