svn commit: r288834 - head/usr.bin/truss

Bryan Drewery bdrewery at FreeBSD.org
Mon Oct 5 18:11:31 UTC 2015


Author: bdrewery
Date: Mon Oct  5 18:11:30 2015
New Revision: 288834
URL: https://svnweb.freebsd.org/changeset/base/288834

Log:
  Add decoding for modfind(2)

Modified:
  head/usr.bin/truss/syscalls.c

Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c	Mon Oct  5 18:09:43 2015	(r288833)
+++ head/usr.bin/truss/syscalls.c	Mon Oct  5 18:11:30 2015	(r288834)
@@ -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,


More information about the svn-src-head mailing list