[llvm-commits] CVS: llvm/tools/bugpoint/bugpoint.cpp
Misha Brukman
brukman at cs.uiuc.edu
Fri Sep 12 15:44:01 PDT 2003
Changes in directory llvm/tools/bugpoint:
bugpoint.cpp updated: 1.6 -> 1.7
---
Log message:
Bugpoint has the ability of generating a plethora of core files, so to
avoid filling up the disk, set the max core file size to 0.
---
Diffs of the changes:
Index: llvm/tools/bugpoint/bugpoint.cpp
diff -u llvm/tools/bugpoint/bugpoint.cpp:1.6 llvm/tools/bugpoint/bugpoint.cpp:1.7
--- llvm/tools/bugpoint/bugpoint.cpp:1.6 Thu Aug 7 16:19:30 2003
+++ llvm/tools/bugpoint/bugpoint.cpp Fri Sep 12 15:42:57 2003
@@ -9,6 +9,8 @@
#include "BugDriver.h"
#include "llvm/Support/PassNameParser.h"
#include "Support/CommandLine.h"
+#include "Config/unistd.h"
+#include <sys/resource.h>
static cl::list<std::string>
InputFilenames(cl::Positional, cl::OneOrMore,
@@ -26,6 +28,16 @@
BugDriver D(argv[0]);
if (D.addSources(InputFilenames)) return 1;
D.addPasses(PassList.begin(), PassList.end());
+
+ // Bugpoint has the ability of generating a plethora of core files, so to
+ // avoid filling up the disk, set the max core file size to 0.
+ struct rlimit rlim;
+ rlim.rlim_cur = rlim.rlim_max = 0;
+ int res = setrlimit(RLIMIT_CORE, &rlim);
+ if (res < 0) {
+ // setrlimit() may have failed, but we're not going to let that stop us
+ perror("setrlimit: RLIMIT_CORE");
+ }
return D.run();
}
More information about the llvm-commits
mailing list