X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6784458dd8d84423299bc91252bb7c30a55feac1..e849e1972a7b33aa47d7ec35420e66b7bca9ccba:/src/kernel/EngineImpl.cpp diff --git a/src/kernel/EngineImpl.cpp b/src/kernel/EngineImpl.cpp index 07e067317c..8cf08b7afe 100644 --- a/src/kernel/EngineImpl.cpp +++ b/src/kernel/EngineImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2020. 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. */ @@ -39,7 +39,7 @@ EngineImpl::~EngineImpl() kv.second->destroy(); } -void EngineImpl::load_deployment(const std::string& file) +void EngineImpl::load_deployment(const std::string& file) const { sg_platf_exit(); sg_platf_init(); @@ -48,25 +48,14 @@ void EngineImpl::load_deployment(const std::string& file) surf_parse(); surf_parse_close(); } -void EngineImpl::register_function(const std::string& name, xbt_main_func_t code) -{ - simix_global->registered_functions[name] = [code](std::vector args) { - return simgrid::xbt::wrap_main(code, std::move(args)); - }; -} -void EngineImpl::register_function(const std::string& name, void (*code)(std::vector)) +void EngineImpl::register_function(const std::string& name, const actor::ActorCodeFactory& code) { - simix_global->registered_functions[name] = [code](std::vector args) { - return std::bind(std::move(code), std::move(args)); - }; + registered_functions[name] = code; } - -void EngineImpl::register_default(xbt_main_func_t code) +void EngineImpl::register_default(const actor::ActorCodeFactory& code) { - simix_global->default_function = [code](std::vector args) { - return simgrid::xbt::wrap_main(code, std::move(args)); - }; + default_function = code; } } // namespace kernel