git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14890
342795 Internal glibc __GI_mempcpy call should be intercepted
343012 Unhandled syscall 319 (memfd_create)
343303 Fix known deliberate memory leak in setenv() on Mac OS X 10.10
+343306 OS X 10.10: UNKNOWN mach_msg unhandled MACH_SEND_TRAILER option (partial fix)
n-i-bz Provide implementations of certain compiler builtins to support
compilers who may not provide those
n-i-bz Old STABS code is still being compiled, but never used. Remove it.
// (but is this only for too-secure processes?)
// JRS 11 Nov 2014: this assertion is OK for <= 10.9 but fails on 10.10
# if DARWIN_VERS == DARWIN_10_10
- log_decaying("UNKNOWN mach_msg unhandled MACH_SEND_TRAILER option");
+ if (mh->msgh_bits & MACH_SEND_TRAILER) {
+ log_decaying("UNKNOWN mach_msg unhandled MACH_SEND_TRAILER option");
+ }
# else
vg_assert(! (mh->msgh_bits & MACH_SEND_TRAILER));
# endif