Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added a definition of MPI_File (MPI-IO) to allow smpicc to compile code that declare...
authorHenri Casanova <henric@hawaii.edu>
Tue, 6 May 2014 23:09:23 +0000 (13:09 -1000)
committerHenri Casanova <henric@hawaii.edu>
Tue, 6 May 2014 23:09:23 +0000 (13:09 -1000)
include/smpi/smpi.h

index 3146360..0cc6f08 100644 (file)
@@ -161,6 +161,15 @@ typedef enum MPIR_Topo_type {
 typedef ptrdiff_t MPI_Aint;
 typedef long long MPI_Offset;
 
 typedef ptrdiff_t MPI_Aint;
 typedef long long MPI_Offset;
 
+// To compile code that declare MPI_File variables
+struct s_empty {
+#if !defined(__GNUC__) || defined(__STRICT_ANSI__)
+  char empty;
+#endif
+};
+typedef struct s_empty *MPI_File;
+
+
 struct s_smpi_mpi_datatype;
 typedef struct s_smpi_mpi_datatype *MPI_Datatype;
 
 struct s_smpi_mpi_datatype;
 typedef struct s_smpi_mpi_datatype *MPI_Datatype;