Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move parts of the kernel to the right subdir
[simgrid.git] / src / include / smpi / smpi_interface.h
index 73dd68d..6f6c9d0 100644 (file)
@@ -12,11 +12,13 @@ SG_BEGIN_DECL()
 
 /** \brief MPI collective description */
 
-typedef struct mpi_coll_description {
+struct mpi_coll_description {
   const char *name;
   const char *description;
   void *coll;
-} s_mpi_coll_description_t, *mpi_coll_description_t;
+};
+typedef struct mpi_coll_description  s_mpi_coll_description_t;
+typedef struct mpi_coll_description* mpi_coll_description_t;
 
 /** \ingroup MPI gather
  *  \brief The list of all available allgather collectives
@@ -94,9 +96,6 @@ XBT_PUBLIC(int) find_coll_description(s_mpi_coll_description_t * table, char *na
 
 XBT_PUBLIC_DATA(void) (*smpi_coll_cleanup_callback)(void);
 XBT_PUBLIC(void) smpi_coll_cleanup_mvapich2(void);
-extern XBT_PRIVATE double smpi_wtime_sleep;
-extern XBT_PRIVATE double smpi_iprobe_sleep;
-extern XBT_PRIVATE double smpi_test_sleep;
 
 SG_END_DECL()