summaryrefslogtreecommitdiff
path: root/Process.h
diff options
context:
space:
mode:
authorloderunner <loderunner@63cc0a6c-1f0e-0410-841e-f6a342073da8>2011-11-21 02:52:41 +0000
committerloderunner <loderunner@63cc0a6c-1f0e-0410-841e-f6a342073da8>2011-11-21 02:52:41 +0000
commitc2247acdd236a332d0d4a71e2e763cc6564d3e4d (patch)
tree616bbb782feaabc04d48c963ff1b4b1cfec5b267 /Process.h
parent2d55998aedb942bd24ec771a0c9ec7a52234038b (diff)
downloadhtop-c2247acdd236a332d0d4a71e2e763cc6564d3e4d.tar.gz
Remove bundled hwloc-1.2.1. Use either native Linux affinity support or an external libhwloc.
(for details see https://sourceforge.net/mailarchive/forum.php?thread_name=CAJpkDYeZpwqcWxZ77wq6bMrnhn-KzkU1xAqb3cU0drfnA3n9FQ%40mail.gmail.com&forum_name=htop-general ) git-svn-id: svn://svn.code.sf.net/p/htop/code/trunk@268 63cc0a6c-1f0e-0410-841e-f6a342073da8
Diffstat (limited to 'Process.h')
-rw-r--r--Process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Process.h b/Process.h
index c49e0b7..e72f816 100644
--- a/Process.h
+++ b/Process.h
@@ -32,7 +32,7 @@ in the source distribution for its full text.
#include <sched.h>
#include <time.h>
-#ifdef HAVE_HWLOC
+#ifdef HAVE_LIBHWLOC
#include <hwloc/linux.h>
#endif
@@ -196,7 +196,7 @@ void Process_toggleTag(Process* this);
bool Process_setPriority(Process* this, int priority);
-#ifdef HAVE_HWLOC
+#ifdef HAVE_LIBHWLOC
Affinity* Process_getAffinity(Process* this);