X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/edde8f7fbc1b74a81551bf9eb7bac1935b999296..693f30b46244c152cd79cdf3ad35d4a79b866c9c:/examples/msg/priority/priority.c diff --git a/examples/msg/priority/priority.c b/examples/msg/priority/priority.c index 48aaeaf546..8690ec57ed 100644 --- a/examples/msg/priority/priority.c +++ b/examples/msg/priority/priority.c @@ -14,6 +14,14 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example"); +/** @addtogroup MSG_examples + * + * - priority/priority.c: Demonstrates the use of @ref + * MSG_task_set_priority to change the computation priority of a + * given task. + * + */ + static int test(int argc, char *argv[]) { double computation_amount = 0.0; @@ -43,7 +51,6 @@ static MSG_error_t test_all(const char *platform_file, MSG_error_t res = MSG_OK; { /* Simulation setting */ - MSG_set_channel_number(1); MSG_create_environment(platform_file); } { /* Application deployment */ @@ -66,7 +73,7 @@ int main(int argc, char *argv[]) #endif - MSG_global_init(&argc, argv); + MSG_init(&argc, argv); if (argc < 3) { printf("Usage: %s platform_file deployment_file\n", argv[0]); printf("example: %s msg_platform.xml msg_deployment.xml\n", argv[0]);