You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Playing around with automagically collecting cores, if the process has a lot of cache, the dumps can be very large. We should instead do a madvise(MADV_DONTDUMP) on any cache allocations to keep the core size manageable. One hitch is that Centos6' kernel is too old to support it, so we'll need to wrap it in #if defines where CMake does a configuration-time test to see if MADV_DONTDUMP is declared
The text was updated successfully, but these errors were encountered:
Playing around with automagically collecting cores, if the process has a lot of cache, the dumps can be very large. We should instead do a
madvise(MADV_DONTDUMP)
on any cache allocations to keep the core size manageable. One hitch is that Centos6' kernel is too old to support it, so we'll need to wrap it in#if
defines where CMake does a configuration-time test to see ifMADV_DONTDUMP
is declaredThe text was updated successfully, but these errors were encountered: