From: Frederic Suter Date: Mon, 16 Sep 2019 09:56:59 +0000 (+0200) Subject: take change of signal location into account X-Git-Tag: v3.24~86 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/798829afc92dbaa4333803b858d468d25bcd3cab?ds=sidebyside take change of signal location into account --- diff --git a/src/plugins/file_system/s4u_FileSystem.cpp b/src/plugins/file_system/s4u_FileSystem.cpp index f23b028b52..3af6fd9df1 100644 --- a/src/plugins/file_system/s4u_FileSystem.cpp +++ b/src/plugins/file_system/s4u_FileSystem.cpp @@ -592,8 +592,8 @@ void sg_storage_file_system_init() FileDescriptorHostExt::EXTENSION_ID = simgrid::s4u::Host::extension_create(); simgrid::s4u::Host::on_creation.connect(&on_host_creation); } - simgrid::s4u::on_platform_created.connect(&on_platform_created); - simgrid::s4u::on_simulation_end.connect(&on_simulation_end); + simgrid::s4u::Engine::on_platform_created.connect(&on_platform_created); + simgrid::s4u::Engine::on_simulation_end.connect(&on_simulation_end); } sg_file_t sg_file_open(const char* fullpath, void* data)