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

Michael Tuexen tuexen at FreeBSD.org
Mon Jan 15 23:17:13 UTC 2018


Author: tuexen
Date: Mon Jan 15 23:17:12 2018
New Revision: 328034
URL: https://svnweb.freebsd.org/changeset/base/328034

Log:
  Keep list sorted. Thanks to jhb@ to pointing out that I put it at the
  wrong place in r327919.

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

Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c	Mon Jan 15 23:12:54 2018	(r328033)
+++ head/usr.bin/truss/syscalls.c	Mon Jan 15 23:17:12 2018	(r328034)
@@ -387,13 +387,13 @@ static struct syscall decoded_syscalls[] = {
 	  .args = { { Name, 0 }, { Quotactlcmd, 1 }, { Int, 2 }, { Ptr, 3 } } },
 	{ .name = "read", .ret_type = 1, .nargs = 3,
 	  .args = { { Int, 0 }, { BinString | OUT, 1 }, { Sizet, 2 } } },
-	{ .name = "readv", .ret_type = 1, .nargs = 3,
-	  .args = { { Int, 0 }, { Iovec | OUT, 1 }, { Int, 2 } } },
 	{ .name = "readlink", .ret_type = 1, .nargs = 3,
 	  .args = { { Name, 0 }, { Readlinkres | OUT, 1 }, { Sizet, 2 } } },
 	{ .name = "readlinkat", .ret_type = 1, .nargs = 4,
 	  .args = { { Atfd, 0 }, { Name, 1 }, { Readlinkres | OUT, 2 },
 		    { Sizet, 3 } } },
+	{ .name = "readv", .ret_type = 1, .nargs = 3,
+	  .args = { { Int, 0 }, { Iovec | OUT, 1 }, { Int, 2 } } },
 	{ .name = "reboot", .ret_type = 1, .nargs = 1,
 	  .args = { { Reboothowto, 0 } } },
 	{ .name = "recvfrom", .ret_type = 1, .nargs = 6,


More information about the svn-src-all mailing list