X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/611d822b02f836d7abe031cced6adc4281ef4356..b6dde5ff6f208b83545a4b4e9e81712d0d8617a1:/src/smpi/include/smpi_status.hpp diff --git a/src/smpi/include/smpi_status.hpp b/src/smpi/include/smpi_status.hpp index 8825cd51a1..31a7a1d450 100644 --- a/src/smpi/include/smpi_status.hpp +++ b/src/smpi/include/smpi_status.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2018. The SimGrid Team. +/* Copyright (c) 2009-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -17,7 +17,10 @@ namespace smpi{ class Status{ public: static void empty(MPI_Status * status); -static int get_count(MPI_Status * status, MPI_Datatype datatype); +static int cancelled (const MPI_Status * status); +static void set_cancelled (MPI_Status * status, int flag); +static void set_elements(MPI_Status* status, const Datatype*, int count); +static int get_count(const MPI_Status * status, MPI_Datatype datatype); };