---
syscalls/msgrcv.c | 4 ++--
syscalls/msgsnd.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/syscalls/msgrcv.c b/syscalls/msgrcv.c
index b730ba6..2200472 100644
--- a/syscalls/msgrcv.c
+++ b/syscalls/msgrcv.c
@@ -17,7 +17,7 @@ struct syscall syscall_msgrcv = {
.arg5name = "msgflg",
.arg5type = ARG_LIST,
.arg5list = {
- .num = 3,
- .values = { MSG_NOERROR, MSG_EXCEPT, MSG_COPY },
+ .num = 4,
+ .values = { MSG_NOERROR, MSG_EXCEPT, MSG_COPY, IPC_NOWAIT },
},
};
diff --git a/syscalls/msgsnd.c b/syscalls/msgsnd.c
index 132336b..3e3a91d 100644
--- a/syscalls/msgsnd.c
+++ b/syscalls/msgsnd.c
@@ -16,7 +16,7 @@ struct syscall syscall_msgsnd = {
.arg4name = "msgflg",
.arg4type = ARG_LIST,
.arg4list = {
- .num = 3,
- .values = { MSG_NOERROR, MSG_EXCEPT, MSG_COPY },
+ .num = 4,
+ .values = { MSG_NOERROR, MSG_EXCEPT, MSG_COPY, IPC_NOWAIT },
},
};
--
1.8.1.4
--
To unsubscribe from this list: send the line "unsubscribe trinity" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html