This source file includes following definitions.
- MPI_T_category_changed
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 
  14 #include "ompi/mpi/tool/mpit-internal.h"
  15 
  16 #if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
  17 #pragma weak MPI_T_category_changed = PMPI_T_category_changed
  18 #endif
  19 
  20 #if OMPI_PROFILING_DEFINES
  21 #include "ompi/mpi/tool/profile/defines.h"
  22 #endif
  23 
  24 
  25 int MPI_T_category_changed(int *stamp)
  26 {
  27     if (!mpit_is_initialized ()) {
  28         return MPI_T_ERR_NOT_INITIALIZED;
  29     }
  30 
  31     ompi_mpit_lock ();
  32     *stamp = mca_base_var_group_get_stamp ();
  33     ompi_mpit_unlock ();
  34 
  35     return MPI_SUCCESS;
  36 }