Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename host callbacks
[simgrid.git] / src / surf / callbacks.cpp
index 4d1d041..07b63df 100644 (file)
@@ -10,9 +10,9 @@
 #include "src/surf/surf_interface.hpp"
 #include "src/surf/host_interface.hpp"
 
-void surf_host_created_callback(void (*callback)(sg_host_t))
+void surf_on_host_created(void (*callback)(sg_host_t))
 {
-  hostCreatedCallbacks.connect([callback](Host* host) {
+  simgrid::surf::Host::onCreation.connect([callback](simgrid::surf::Host* host) {
     const char* id = host->getName();
     sg_host_t h = sg_host_by_name(id);
     xbt_assert(h != NULL, "Host not found for name %s", id);
@@ -20,9 +20,9 @@ void surf_host_created_callback(void (*callback)(sg_host_t))
   });
 }
 
-void surf_storage_created_callback(void (*callback)(sg_storage_t))
+void surf_on_storage_created(void (*callback)(sg_storage_t))
 {
-  storageCreatedCallbacks.connect([callback](Storage* storage) {
+  simgrid::surf::storageCreatedCallbacks.connect([callback](simgrid::surf::Storage* storage) {
     const char* id = storage->getName();
     // TODO, create sg_storage_by_name
     sg_storage_t s = xbt_lib_get_elm_or_null(storage_lib, id);