Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not pass intrusive_ptr<> to the logging subsystem
[simgrid.git] / src / simix / smx_synchro.cpp
index bdda602..cde0af9 100644 (file)
@@ -27,7 +27,7 @@ static smx_synchro_t SIMIX_synchro_wait(sg_host_t smx_host, double timeout)
 {
   XBT_IN("(%p, %f)",smx_host,timeout);
 
-  simgrid::simix::Raw *sync = new simgrid::simix::Raw();
+  simgrid::kernel::activity::Raw *sync = new simgrid::kernel::activity::Raw();
   sync->sleep = surf_host_sleep(smx_host, timeout);
   sync->sleep->setData(sync);
   XBT_OUT();