[PATCH] D20409: [LibFuzzer] Fix NumberOfCpuCores() for Mac OSX
Dan Liew via llvm-commits
llvm-commits at lists.llvm.org
Thu May 19 16:11:09 PDT 2016
delcypher updated this revision to Diff 57875.
delcypher added a comment.
Address @kcc 's comments apart from assert before return.
http://reviews.llvm.org/D20409
Files:
lib/Fuzzer/FuzzerUtil.cpp
Index: lib/Fuzzer/FuzzerUtil.cpp
===================================================================
--- lib/Fuzzer/FuzzerUtil.cpp
+++ lib/Fuzzer/FuzzerUtil.cpp
@@ -113,11 +113,30 @@
void SetSigTermHandler() { SetSigaction(SIGTERM, InterruptHandler); }
int NumberOfCpuCores() {
- FILE *F = popen("nproc", "r");
- int N = 0;
- if (fscanf(F, "%d", &N) != 1)
+ const char *CmdLine = nullptr;
+ if (LIBFUZZER_LINUX) {
+ CmdLine = "nproc";
+ } else if (LIBFUZZER_APPLE) {
+ CmdLine = "sysctl -n hw.ncpu";
+ } else {
+ assert(0 && "NumberOfCpuCores() is not implemented for your platform");
+ }
+
+ FILE *F = popen(CmdLine, "r");
+ int N = 1;
+ if (!F || fscanf(F, "%d", &N) != 1) {
+ Printf("WARNING: Failed to parse output of command \"%s\" in %s(). "
+ "Assuming CPU count of 1.\n",
+ CmdLine, __func__);
+ N = 1;
+ }
+
+ if (pclose(F)) {
+ Printf("WARNING: Executing command \"%s\" failed in %s(). ",
+ "Assuming CPU count of 1.\n", CmdLine, __func__);
N = 1;
- fclose(F);
+ }
+ assert(N > 0 && "Number of cpu cores must be > 0");
return N;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20409.57875.patch
Type: text/x-patch
Size: 1120 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160519/49ab0a1e/attachment.bin>
More information about the llvm-commits
mailing list