truss: add ppoll(2) argument decoding

PR:		264029
Approved by:	emaste
MFC after:	3 days
This commit is contained in:
Christian Weisgerber 2022-05-17 20:20:53 +02:00
parent 6890b58814
commit 9bf4983f54
1 changed files with 3 additions and 0 deletions

View File

@ -422,6 +422,9 @@ static const struct syscall_decode decoded_syscalls[] = {
{ Fadvice, 3 } } },
{ .name = "posix_openpt", .ret_type = 1, .nargs = 1,
.args = { { Open, 0 } } },
{ .name = "ppoll", .ret_type = 1, .nargs = 4,
.args = { { Pollfd, 0 }, { Int, 1 }, { Timespec | IN, 2 },
{ Sigset | IN, 3 } } },
{ .name = "pread", .ret_type = 1, .nargs = 4,
.args = { { Int, 0 }, { BinString | OUT, 1 }, { Sizet, 2 },
{ QuadHex, 3 } } },