Skip to content

Commit c853572

Browse files
jsquyresmarkalle
authored andcommitted
treematch: do not include <hwloc.h>
Instead, include "opal/mca/hwloc/hwloc.h" Signed-off-by: Jeff Squyres <[email protected]>
1 parent 3bfda3f commit c853572

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

ompi/mca/topo/treematch/treematch/tm_hwloc.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
#include <hwloc.h>
2-
#include <hwloc/helper.h>
1+
#include "opal/mca/hwloc/hwloc.h"
32
#include "tm_tree.h"
43
#include "tm_mapping.h"
54
#include <ctype.h>

ompi/mca/topo/treematch/treematch/tm_hwloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <hwloc.h>
1+
#include "opal/mca/hwloc/hwloc.h"
22
#include "tm_tree.h"
33

44
void hwloc_topology_tag(hwloc_topology_t topology);

ompi/mca/topo/treematch/treematch/tm_thread_pool.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <pthread.h>
22
#include "tm_thread_pool.h"
33
#include "tm_verbose.h"
4-
#include <hwloc.h>
4+
#include "opal/mca/hwloc/hwloc.h"
55
#include "tm_verbose.h"
66
#include "tm_tree.h"
77
#include <errno.h>

ompi/mca/topo/treematch/treematch/tm_thread_pool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define THREAD_POOL_H
33

44
#include <pthread.h>
5-
#include <hwloc.h>
5+
#include "opal/mca/hwloc/hwloc.h"
66

77

88
typedef struct _work_t{

0 commit comments

Comments
 (0)