diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:15:49 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:15:49 -0500 |
commit | 1d2c08610bb9437174fa393c3f739ee6228fb4aa (patch) | |
tree | 42a301b30a2490fb6a9cc3e27aa4ee8fca52edde /src/common/util.cpp | |
parent | Merge pull request #4130 (diff) | |
parent | wallet: disable core dumps on startup in release mode (diff) | |
download | monero-1d2c08610bb9437174fa393c3f739ee6228fb4aa.tar.xz |
Merge pull request #4136
4307489 wallet: disable core dumps on startup in release mode (moneromooo-monero)
Diffstat (limited to 'src/common/util.cpp')
-rw-r--r-- | src/common/util.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/util.cpp b/src/common/util.cpp index f644c573c..5e0d2726e 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -37,6 +37,7 @@ #ifdef __GLIBC__ #include <sys/types.h> #include <sys/stat.h> +#include <sys/resource.h> #include <ustat.h> #include <unistd.h> #include <dirent.h> @@ -682,6 +683,21 @@ std::string get_nix_version_display_string() static void setup_crash_dump() {} #endif + bool disable_core_dumps() + { +#ifdef __GLIBC__ + // disable core dumps in release mode + struct rlimit rlimit; + rlimit.rlim_cur = rlimit.rlim_max = 0; + if (setrlimit(RLIMIT_CORE, &rlimit)) + { + MWARNING("Failed to disable core dumps"); + return false; + } +#endif + return true; + } + bool on_startup() { mlog_configure("", true); |