X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/18449bfffced07ec0a49297f1eb76c4fe6792895..111a3da5058ade0ddcfb01173504a46ff24c8429:/src/smpi/include/smpi_request.hpp diff --git a/src/smpi/include/smpi_request.hpp b/src/smpi/include/smpi_request.hpp index 3224828b47..82e599339f 100644 --- a/src/smpi/include/smpi_request.hpp +++ b/src/smpi/include/smpi_request.hpp @@ -38,23 +38,23 @@ class Request : public F2C { // We can't override src, tag, and size, because the request may be reused later int real_src_; int real_tag_; - int truncated_; + bool truncated_; size_t real_size_; MPI_Comm comm_; smx_activity_t action_; unsigned flags_; - int detached_; + bool detached_; MPI_Request detached_sender_; int refcount_; MPI_Op op_; - int cancelled_; + int cancelled_; // tri-state smpi_mpi_generalized_request_funcs generalized_funcs; MPI_Request* nbc_requests_; int nbc_requests_size_; public: Request() = default; - Request(void* buf, int count, MPI_Datatype datatype, int src, int dst, int tag, MPI_Comm comm, unsigned flags); + Request(void* buf, int count, MPI_Datatype datatype, int src, int dst, int tag, MPI_Comm comm, unsigned flags, MPI_Op op = MPI_REPLACE); MPI_Comm comm() { return comm_; } size_t size() { return size_; } size_t real_size() { return real_size_; } @@ -62,13 +62,15 @@ public: int dst() { return dst_; } int tag() { return tag_; } int flags() { return flags_; } - int detached() { return detached_; } + bool detached() { return detached_; } MPI_Datatype type() { return old_type_; } void print_request(const char* message); void start(); void cancel(); void ref(); void set_nbc_requests(MPI_Request* reqs, int size); + int get_nbc_requests_size(); + MPI_Request* get_nbc_requests(); static void finish_wait(MPI_Request* request, MPI_Status* status); static void unref(MPI_Request* request); static int wait(MPI_Request* req, MPI_Status* status);