From d2e180ffa03610a25c59fa1b1982413c6efe0602 Mon Sep 17 00:00:00 2001 From: Matthias Jurenz Date: Fri, 27 Jan 2012 14:11:33 +0000 Subject: [PATCH] Added field for VampirTrace support indicating whether it's enabled or not This commit was SVN r25805. --- ompi/tools/ompi_info/param.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ompi/tools/ompi_info/param.c b/ompi/tools/ompi_info/param.c index 7d011f0af4..125046ff4a 100644 --- a/ompi/tools/ompi_info/param.c +++ b/ompi/tools/ompi_info/param.c @@ -517,6 +517,7 @@ void ompi_info_do_config(bool want_all) char *ft_support; char *crdebug_support; char *topology_support; + char *vt_support; /* Do a little preprocessor trickery here to figure ompi_info_out the * tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or * ompi_mpi_param_check). The preprocessor will only allow @@ -562,6 +563,7 @@ void ompi_info_do_config(bool want_all) wtime_support = OPAL_TIMER_USEC_NATIVE ? "native" : "gettimeofday"; symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no"; topology_support = OPAL_HAVE_HWLOC ? "yes" : "no"; + vt_support = OMPI_ENABLE_CONTRIB_vt ? "yes" : "no"; /* setup strings that require allocation */ if (OMPI_WANT_F77_BINDINGS) { @@ -845,6 +847,8 @@ void ompi_info_do_config(bool want_all) ompi_info_out("C/R Enabled Debugging", "options:crdebug_support", crdebug_support); free(crdebug_support); + ompi_info_out("VampirTrace support", "options:vt", vt_support); + ompi_info_out_int("MPI_MAX_PROCESSOR_NAME", "options:mpi-max-processor-name", MPI_MAX_PROCESSOR_NAME); ompi_info_out_int("MPI_MAX_ERROR_STRING", "options:mpi-max-error-string",