X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/48a6c50a85f2d0d71990bd4a57d23fb6d763f64a..0afab0e550e09d35a4aaaae802c7f2ea17d2b860:/examples/msg/priority/priority.c diff --git a/examples/msg/priority/priority.c b/examples/msg/priority/priority.c index e4686cbd26..f82d13207d 100644 --- a/examples/msg/priority/priority.c +++ b/examples/msg/priority/priority.c @@ -14,11 +14,19 @@ 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; double priority = 1.0; - m_task_t task = NULL; + msg_task_t task = NULL; _XBT_GNUC_UNUSED int res = sscanf(argv[1], "%lg", &computation_amount); xbt_assert(res, "Invalid argument %s\n", argv[1]); @@ -37,10 +45,10 @@ static int test(int argc, char *argv[]) return 0; } -static MSG_error_t test_all(const char *platform_file, +static msg_error_t test_all(const char *platform_file, const char *application_file) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; { /* Simulation setting */ MSG_create_environment(platform_file); @@ -57,7 +65,7 @@ static MSG_error_t test_all(const char *platform_file, int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; #ifdef _MSC_VER unsigned int prev_exponent_format = @@ -65,14 +73,13 @@ 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]); exit(1); } res = test_all(argv[1], argv[2]); - MSG_clean(); #ifdef _MSC_VER _set_output_format(prev_exponent_format);