7cb6c2fcc2
We try to keep the source code the same between master and v1.10. So put the #if's back for OPAL_HAVE_HWLOC (and just hard-code it to 1 on master) so that this code is also compilable in v1.10.
23 строки
384 B
C
23 строки
384 B
C
/*
|
|
* Copyright (c) 2013-2015 Cisco Systems, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef BTL_USNIC_HWLOC_H
|
|
#define BTL_USNIC_HWLOC_H
|
|
|
|
#include "opal_config.h"
|
|
|
|
#include "btl_usnic_module.h"
|
|
|
|
|
|
#if OPAL_HAVE_HWLOC
|
|
int opal_btl_usnic_hwloc_distance(opal_btl_usnic_module_t *module);
|
|
#endif
|
|
|
|
#endif /* BTL_USNIC_HWLOC_H */
|