Add decoding for modfind(2)

This commit is contained in:
Bryan Drewery 2015-10-05 18:11:30 +00:00
parent 816c67bac0
commit 47ff1ba642
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=288834

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,