From 56bf85096cc89f91d28671b5d93b4172240263bc Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Wed, 27 Jul 2016 15:09:11 +0000 Subject: Cleanup patches, category benchmarks Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight --- benchmarks/smhasher/files/patch-Platform.cpp | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 benchmarks/smhasher/files/patch-Platform.cpp (limited to 'benchmarks/smhasher/files/patch-Platform.cpp') diff --git a/benchmarks/smhasher/files/patch-Platform.cpp b/benchmarks/smhasher/files/patch-Platform.cpp new file mode 100644 index 000000000000..14311fb21cc2 --- /dev/null +++ b/benchmarks/smhasher/files/patch-Platform.cpp @@ -0,0 +1,41 @@ +--- Platform.cpp.orig 2014-04-22 21:40:50 UTC ++++ Platform.cpp +@@ -19,6 +19,38 @@ void SetAffinity ( int cpu ) + SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST); + } + ++#elif __FreeBSD__ ++ ++#include ++#include ++#include ++#include ++#include ++ ++void ++SetAffinity(int cpu) ++{ ++ cpuset_t mask; ++ unsigned int i; ++ ++ fprintf(stdout, "SetAffinity called with arg %d\n", cpu); ++ ++ CPU_ZERO(&mask); ++ i = 0; ++ do { ++ if (cpu & 1) { ++ CPU_SET(i, &mask); ++ } ++ i++; ++ cpu >>= 1; ++ } while (cpu); ++ ++ if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset_t), &mask) == -1) ++ { ++ fprintf(stderr, "SetAffinity() failed. %s", strerror(errno)); ++ } ++} ++ + #else + + #include -- cgit v1.2.3