Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / smpi / mpi / smpi_status.cpp
index 5750465..675fb2e 100644 (file)
@@ -1,15 +1,13 @@
-/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "private.h"
-#include "src/simix/smx_private.h"
-#include "smpi_datatype.hpp"
 #include "smpi_status.hpp"
+#include "private.hpp"
+#include "smpi_datatype.hpp"
 
-namespace simgrid{
-namespace smpi{
+namespace simgrid::smpi {
 
 void Status::empty(MPI_Status * status)
 {
@@ -18,13 +16,28 @@ void Status::empty(MPI_Status * status)
     status->MPI_TAG = MPI_ANY_TAG;
     status->MPI_ERROR = MPI_SUCCESS;
     status->count=0;
+    status->cancelled=0;
   }
 }
 
-int Status::get_count(MPI_Status * status, MPI_Datatype datatype)
+int Status::cancelled(const MPI_Status * status)
 {
-  return status->count / datatype->size();
+  return status->cancelled!=0;
 }
 
+void Status::set_cancelled(MPI_Status * status, int flag)
+{
+  status->cancelled=flag;
 }
+
+void Status::set_elements(MPI_Status* status, const Datatype*, int count)
+{
+  status->count=count;
 }
+
+int Status::get_count(const MPI_Status* status, const Datatype* datatype)
+{
+  return status->count / datatype->size();
+}
+
+} // namespace simgrid::smpi