[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.4-235-g49b7417

mysql vizuser noreply at mpich.org
Sun May 19 00:47:03 CDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  49b74176e850230fd868a8b1dae30ffacb2f11d2 (commit)
      from  2bda6bc7ec088821941f9a7a8d7f001db816b99c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/49b74176e850230fd868a8b1dae30ffacb2f11d2

commit 49b74176e850230fd868a8b1dae30ffacb2f11d2
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Sun May 19 00:45:28 2013 -0500

    Incorrect macro for sys/sysctl.h
    
    Fixed a typo where we used HAVE_SYSCTL_H instead of HAVE_SYS_SYSCTL_H.
    This was causing the check to always fail.
    
    No reviewer.

diff --git a/src/pm/hydra/tools/topo/hwloc/hwloc/src/topology-freebsd.c b/src/pm/hydra/tools/topo/hwloc/hwloc/src/topology-freebsd.c
index 54d88f7..eddec79 100644
--- a/src/pm/hydra/tools/topo/hwloc/hwloc/src/topology-freebsd.c
+++ b/src/pm/hydra/tools/topo/hwloc/hwloc/src/topology-freebsd.c
@@ -164,7 +164,7 @@ hwloc_freebsd_get_thread_cpubind(hwloc_topology_t topology __hwloc_attribute_unu
 #endif
 #endif
 
-#if defined(HAVE_SYSCTL) && defined(HAVE_SYSCTL_H)
+#if defined(HAVE_SYSCTL) && defined(HAVE_SYS_SYSCTL_H)
 static void
 hwloc_freebsd_node_meminfo_info(struct hwloc_topology *topology)
 {
@@ -187,7 +187,7 @@ hwloc_look_freebsd(struct hwloc_backend *backend)
   }
 
   /* Add FreeBSD specific information */
-#if defined(HAVE_SYSCTL) && defined(HAVE_SYSCTL_H)
+#if defined(HAVE_SYSCTL) && defined(HAVE_SYS_SYSCTL_H)
   hwloc_freebsd_node_meminfo_info(topology);
 #endif
   hwloc_obj_add_info(topology->levels[0][0], "Backend", "FreeBSD");

-----------------------------------------------------------------------

Summary of changes:
 .../tools/topo/hwloc/hwloc/src/topology-freebsd.c  |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list