Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Completely revise the way to deal with Streamed I/Os
[simgrid.git] / src / kernel / activity / CommImpl.cpp
index ca40f6a..70f560e 100644 (file)
@@ -124,7 +124,7 @@ CommImpl* CommImpl::start()
      * routes and later create the respective surf actions */
     auto net_model = from_->get_netpoint()->get_englobing_zone()->get_network_model();
 
-    surf_action_ = net_model->communicate(from_, to_, size_, rate_);
+    surf_action_ = net_model->communicate(from_, to_, size_, rate_, false);
     surf_action_->set_activity(this);
     surf_action_->set_category(get_tracing_category());
     set_start_time(surf_action_->get_start_time());