X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8f58249ee1e3d4fff121c049fc018bf6fa9555a8..b8d8b4d092246a5155f58477b408cd76eb33126d:/docs/source/Deploying_your_application.rst diff --git a/docs/source/Deploying_your_application.rst b/docs/source/Deploying_your_application.rst index 7064655adf..4cd1287909 100644 --- a/docs/source/Deploying_your_application.rst +++ b/docs/source/Deploying_your_application.rst @@ -19,7 +19,7 @@ There is several ways to deploy the :ref:`application ` you want to study on your :ref:`simulated platform `, i.e. to specify which actor should be started on which host. You can do so directly in your program (as shown in :ref:`these examples `), or using an XML deployment -file. Unless you have a good reason, you should keep your application apart +file. Either way, it is a good habit to keep your application apart from the deployment as it will :ref:`ease your experimental campaign afterward `. @@ -76,14 +76,6 @@ This tag starts a new actor executing the given function on a given host. with :cpp:func:`simgrid::s4u::Engine::register_actor` or with :cpp:func:`simgrid::s4u::Engine::register_function`. - If you are stuck with MSG, use :cpp:func:`MSG_process_create`, - :cpp:func:`MSG_process_create_with_arguments` or - :cpp:func:`MSG_process_create_with_environment`. - - There is nothing to do in Java, as SimGrid uses introspection abilities to - retrieve the classes from their names. You must then use the full class name - (including the package name) in your XML file. - :``start_time``: Useful to delay the start of your actor. -1 starts the actor immediately.