Add decoding for modfind(2)

This commit is contained in:
Bryan Drewery 2015-10-05 18:11:30 +00:00
parent 816c67bac0
commit 47ff1ba642
1 changed files with 2 additions and 0 deletions

View File

@ -253,6 +253,8 @@ static struct syscall decoded_syscalls[] = {
.args = { { Int, 0 }, { Ptr, 1 } } },
{ .name = "kldfirstmod", .ret_type = 1, .nargs = 1,
.args = { { Int, 0 } } },
{ .name = "modfind", .ret_type = 1, .nargs = 1,
.args = { { Name | IN, 0 } } },
{ .name = "nanosleep", .ret_type = 1, .nargs = 1,
.args = { { Timespec, 0 } } },
{ .name = "select", .ret_type = 1, .nargs = 5,