X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4b7e401a2d400a77cae7741a12dea84fb6408bbd..90d012e147a92dd7c78f0d0e8d1614b6559eb450:/src/simix/smx_synchro.cpp diff --git a/src/simix/smx_synchro.cpp b/src/simix/smx_synchro.cpp index b1a6485584..b2867f4fc4 100644 --- a/src/simix/smx_synchro.cpp +++ b/src/simix/smx_synchro.cpp @@ -5,8 +5,9 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "src/surf/surf_interface.hpp" #include "smx_private.h" +#include "src/surf/cpu_interface.hpp" +#include "src/surf/surf_interface.hpp" #include #include @@ -27,7 +28,7 @@ static smx_activity_t SIMIX_synchro_wait(sg_host_t smx_host, double timeout) XBT_IN("(%p, %f)",smx_host,timeout); simgrid::kernel::activity::Raw *sync = new simgrid::kernel::activity::Raw(); - sync->sleep = surf_host_sleep(smx_host, timeout); + sync->sleep = smx_host->pimpl_cpu->sleep(timeout); sync->sleep->setData(sync); XBT_OUT(); return sync;