Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Added 2 FIXME's for PMPI_Is_thread_main()
[simgrid.git] / src / smpi / bindings / smpi_pmpi.cpp
index 52dcf73..c8129b9 100644 (file)
@@ -104,10 +104,13 @@ int PMPI_Query_thread(int *provided)
 
 int PMPI_Is_thread_main(int *flag)
 {
+  // FIXME: The MPI standard seems to say that fatal errors need to be triggered
+  // if MPI has been finalized or not yet been initialized
   if (flag == nullptr) {
     return MPI_ERR_ARG;
   } else {
-    *flag = smpi_process()->index() == 0;
+    *flag = smpi_process()->index() == 0; // FIXME: I don't think this is correct: This just returns true if the process ID is 1,
+                                          // regardless of whether this process called MPI_Thread_Init() or not.
     return MPI_SUCCESS;
   }
 }