summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tapset/aux_syscalls.stp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp
index c101ae19..dc034d1d 100644
--- a/tapset/aux_syscalls.stp
+++ b/tapset/aux_syscalls.stp
@@ -746,6 +746,7 @@ function _recvflags_str(f) {
if(f & 64) bs="MSG_DONTWAIT|".bs
if(f & 256) bs="MSG_WAITALL|".bs
if(f & 8192) bs="MSG_ERRQUEUE|".bs
+ if(f & 0x40000000) bs="MSG_CMSG_CLOEXEC|".bs
return substr(bs,0,strlen(bs)-1)
}