Skip to content

Instantly share code, notes, and snippets.

@smirn0v
Created January 26, 2019 22:12
Show Gist options
  • Save smirn0v/212113efb4c984fabb27d81486bab1e5 to your computer and use it in GitHub Desktop.
Save smirn0v/212113efb4c984fabb27d81486bab1e5 to your computer and use it in GitHub Desktop.
#include <sys/resource.h>
// core dumps may be disallowed by parent of this process; change that
struct rlimit core_limits;
core_limits.rlim_cur = core_limits.rlim_max = RLIM_INFINITY;
setrlimit(RLIMIT_CORE, &core_limits);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment