Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Forward all the parameters to the observer.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 9 Feb 2022 12:12:52 +0000 (13:12 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 9 Feb 2022 12:12:52 +0000 (13:12 +0100)
src/kernel/activity/CommImpl.cpp

index eb45116..8e61933 100644 (file)
@@ -41,7 +41,7 @@ XBT_PRIVATE simgrid::kernel::activity::ActivityImplPtr simcall_HANDLER_comm_isen
     void* data, bool detached)
 {
   simgrid::kernel::actor::CommIsendSimcall observer(src_proc, mbox, task_size, rate, src_buff, src_buff_size, match_fun,
-                                                    nullptr, copy_data_fun, data, false);
+                                                    clean_fun, copy_data_fun, data, detached);
   return simgrid::kernel::activity::CommImpl::isend(&observer);
 }