From 798829afc92dbaa4333803b858d468d25bcd3cab Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Mon, 16 Sep 2019 11:56:59 +0200 Subject: [PATCH] take change of signal location into account --- src/plugins/file_system/s4u_FileSystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.20.1