summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2017-05-03 12:26:16 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2017-05-03 12:26:16 +0000
commitfca08fe6a22dbe2f868bb13f9b62e775a4a57ed0 (patch)
tree3c70a19ef3efb365627f440f689227f03f86b752 /usr.bin
parent8a2b28d7ba3f0a3d860ee77d688fcc987fdf0829 (diff)
downloadsrc-test2-fca08fe6a22dbe2f868bb13f9b62e775a4a57ed0.tar.gz
src-test2-fca08fe6a22dbe2f868bb13f9b62e775a4a57ed0.zip
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/truss/syscalls.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c
index ed180d38b2dc..967857b37bcb 100644
--- a/usr.bin/truss/syscalls.c
+++ b/usr.bin/truss/syscalls.c
@@ -281,6 +281,8 @@ static struct syscall decoded_syscalls[] = {
.args = { { Int, 0 }, { BinString | OUT, 1 }, { Sizet, 2 },
{ Msgflags, 3 }, { Sockaddr | OUT, 4 },
{ Ptr | OUT, 5 } } },
+ { .name = "recvmsg", .ret_type = 1, .nargs = 3,
+ .args = { { Int, 0 }, { Ptr, 1 }, { Msgflags, 2 } } },
{ .name = "rename", .ret_type = 1, .nargs = 2,
.args = { { Name, 0 }, { Name, 1 } } },
{ .name = "renameat", .ret_type = 1, .nargs = 4,
@@ -292,6 +294,8 @@ static struct syscall decoded_syscalls[] = {
{ .name = "select", .ret_type = 1, .nargs = 5,
.args = { { Int, 0 }, { Fd_set, 1 }, { Fd_set, 2 }, { Fd_set, 3 },
{ Timeval, 4 } } },
+ { .name = "sendmsg", .ret_type = 1, .nargs = 3,
+ .args = { { Int, 0 }, { Ptr, 1 }, { Msgflags, 2 } } },
{ .name = "sendto", .ret_type = 1, .nargs = 6,
.args = { { Int, 0 }, { BinString | IN, 1 }, { Sizet, 2 },
{ Msgflags, 3 }, { Sockaddr | IN, 4 },