X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b9684d3607aa558c95b7185ddf147b478a7e367f..eee423ad6210571e9ce5d8a54c6dd11d5f41f2ed:/src/simix/smx_deployment.cpp diff --git a/src/simix/smx_deployment.cpp b/src/simix/smx_deployment.cpp index b5e84b1669..b7bd180750 100644 --- a/src/simix/smx_deployment.cpp +++ b/src/simix/smx_deployment.cpp @@ -1,10 +1,14 @@ -/* Copyright (c) 2007, 2009-2015. The SimGrid Team. +/* Copyright (c) 2007, 2009-2016. 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. */ +#include +#include + #include "smx_private.h" +#include #include "xbt/sysdep.h" #include "xbt/log.h" #include "xbt/dict.h" @@ -59,7 +63,7 @@ void SIMIX_launch_application(const char *file) // Wrap a main() function into a ActorCodeFactory: static simgrid::simix::ActorCodeFactory toActorCodeFactory(xbt_main_func_t code) { - return [code](simgrid::xbt::args args) { + return [code](std::vector args) { return simgrid::xbt::wrapMain(code, std::move(args)); }; } @@ -151,3 +155,14 @@ void SIMIX_process_set_function(const char *process_host, process.on_failure = SURF_PROCESS_ON_FAILURE_DIE; sg_platf_new_process(&process); } + +namespace simgrid { +namespace simix { + +void registerFunction(const char* name, ActorCodeFactory factory) +{ + simix_global->registered_functions[name] = std::move(factory); +} + +} +} \ No newline at end of file