From 9207401f9711ba026a70d7dd47347d7eab168b3f Mon Sep 17 00:00:00 2001 From: Hugo Musso Gualandi Date: Sat, 12 Sep 2020 18:25:25 -0300 Subject: Clean up some code duplication in the header files PR htop-dev/htop#70 got rid of the infrastructure for generating header files, but it left behind some code duplication. Some of cases are things that belong in the header file and don't need to be repeated in the C file. Other cases are things that belong in the C file and don't need to be in the header file. In this commit I tried to fix all of these that I could find. When given a choice I preferred keeping things out of the header file, unless they were being used by someone else. --- Affinity.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Affinity.h') diff --git a/Affinity.h b/Affinity.h index 6bdd9750..52619457 100644 --- a/Affinity.h +++ b/Affinity.h @@ -8,14 +8,6 @@ Released under the GNU GPL, see the COPYING file in the source distribution for its full text. */ -#ifdef HAVE_LIBHWLOC -#if __linux__ -#define HTOP_HWLOC_CPUBIND_FLAG HWLOC_CPUBIND_THREAD -#else -#define HTOP_HWLOC_CPUBIND_FLAG HWLOC_CPUBIND_PROCESS -#endif -#endif - #include "Process.h" #include "ProcessList.h" -- cgit v1.2.3