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

Ed Schouten ed at FreeBSD.org
Wed Dec 23 15:22:51 UTC 2009


Author: ed
Date: Wed Dec 23 15:22:50 2009
New Revision: 200902
URL: http://svn.freebsd.org/changeset/base/200902

Log:
  Allow proper tracing of posix_openpt(2).

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

Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c	Wed Dec 23 14:55:33 2009	(r200901)
+++ head/usr.bin/truss/syscalls.c	Wed Dec 23 15:22:50 2009	(r200902)
@@ -258,6 +258,8 @@ struct syscall syscalls[] = {
 	  .args = { { Name , 0 } , { Name, 1 } } },
 	{ .name = "symlink", .ret_type = 1, .nargs = 2,
 	  .args = { { Name , 0 } , { Name, 1 } } },
+	{ .name = "posix_openpt", .ret_type = 1, .nargs = 1,
+	  .args = { { Open, 0 } } },
 	{ .name = 0 },
 };
 


More information about the svn-src-head mailing list