X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b60c8af597ab1859e4b804954e6e6df37e8cff06..5afd75483d80ccf2c678e50f82613b3556c7ca97:/src/simix/smx_deployment.cpp diff --git a/src/simix/smx_deployment.cpp b/src/simix/smx_deployment.cpp index 54e2e62f49..d353db2210 100644 --- a/src/simix/smx_deployment.cpp +++ b/src/simix/smx_deployment.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -15,25 +15,26 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_deployment, simix, "Logging specific to SIMIX (deployment)"); -void SIMIX_init_application() // XBT_DEPRECATED_v329 +void SIMIX_init_application() // XBT_ATTRIB_DEPRECATED_v329 { sg_platf_exit(); sg_platf_init(); } -void SIMIX_launch_application(const std::string& file) // XBT_DEPRECATED_v329 +void SIMIX_launch_application(const std::string& file) // XBT_ATTRIB_DEPRECATED_v329 { simgrid_load_deployment(file.c_str()); } -void SIMIX_function_register(const std::string& name, xbt_main_func_t code) // XBT_DEPRECATED_v329 +void SIMIX_function_register(const std::string& name, xbt_main_func_t code) // XBT_ATTRIB_DEPRECATED_v329 { simgrid::s4u::Engine::get_instance()->register_function(name, code); } -void SIMIX_function_register(const std::string& name, void (*code)(std::vector)) // XBT_DEPRECATED_v329 +void SIMIX_function_register(const std::string& name, + void (*code)(std::vector)) // XBT_ATTRIB_DEPRECATED_v329 { simgrid::s4u::Engine::get_instance()->register_function(name, code); } -void SIMIX_function_register_default(xbt_main_func_t code) // XBT_DEPRECATED_v329 +void SIMIX_function_register_default(xbt_main_func_t code) // XBT_ATTRIB_DEPRECATED_v329 { simgrid::s4u::Engine::get_instance()->register_default(code); } @@ -62,7 +63,6 @@ void SIMIX_process_set_function(const char* process_host, const char* process_fu xbt_assert(parse_code, "Function '%s' unknown", process_function); actor.function = process_function; - actor.host = process_host; actor.kill_time = process_kill_time; actor.start_time = process_start_time; actor.restart_on_failure = false;