X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e9c0448c6566825b170b98ecff716b098bda10e..f2ad0175ed569f3cfa5df330ec4174d7fe7b1229:/examples/msg/mc/bugged2.c diff --git a/examples/msg/mc/bugged2.c b/examples/msg/mc/bugged2.c index 528dd1b98b..a0376a8b82 100644 --- a/examples/msg/mc/bugged2.c +++ b/examples/msg/mc/bugged2.c @@ -1,16 +1,15 @@ -/* Copyright (c) 2010-2012. The SimGrid Team. +/* Copyright (c) 2010-2015. 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. */ - /******************** Non-deterministic message ordering *********************/ /* Server assumes a fixed order in the reception of messages from its clients */ /* which is incorrect because the message ordering is non-deterministic */ /******************************************************************************/ -#include +#include #include #define N 3 @@ -26,13 +25,13 @@ int server(int argc, char *argv[]) long val1, val2; MSG_task_receive(&task1, "mymailbox"); - val1 = (long) MSG_task_get_data(task1); + val1 = xbt_str_parse_int(MSG_task_get_name(task1), "Task name is not a numerical ID: %s"); MSG_task_destroy(task1); task1 = NULL; XBT_INFO("Received %lu", val1); MSG_task_receive(&task2, "mymailbox"); - val2 = (long) MSG_task_get_data(task2); + val2 = xbt_str_parse_int(MSG_task_get_name(task2), "Task name is not a numerical ID: %s"); MSG_task_destroy(task2); task2 = NULL; XBT_INFO("Received %lu", val2); @@ -40,12 +39,12 @@ int server(int argc, char *argv[]) MC_assert(min(val1, val2) == 1); MSG_task_receive(&task1, "mymailbox"); - val1 = (long) MSG_task_get_data(task1); + val1 = xbt_str_parse_int(MSG_task_get_name(task1), "Task name is not a numerical ID: %s"); MSG_task_destroy(task1); XBT_INFO("Received %lu", val1); MSG_task_receive(&task2, "mymailbox"); - val2 = (long) MSG_task_get_data(task2); + val2 = xbt_str_parse_int(MSG_task_get_name(task2), "Task name is not a numerical ID: %s"); MSG_task_destroy(task2); XBT_INFO("Received %lu", val2); @@ -55,15 +54,13 @@ int server(int argc, char *argv[]) int client(int argc, char *argv[]) { - msg_task_t task1 = - MSG_task_create("task", 0, 10000, (void *) atol(argv[1])); - msg_task_t task2 = - MSG_task_create("task", 0, 10000, (void *) atol(argv[1])); + msg_task_t task1 = MSG_task_create(argv[1], 0, 10000, NULL); + msg_task_t task2 = MSG_task_create(argv[1], 0, 10000, NULL); - XBT_INFO("Send %d!", atoi(argv[1])); + XBT_INFO("Send %s", argv[1]); MSG_task_send(task1, "mymailbox"); - XBT_INFO("Send %d!", atoi(argv[1])); + XBT_INFO("Send %s", argv[1]); MSG_task_send(task2, "mymailbox"); return 0; @@ -76,9 +73,7 @@ int main(int argc, char *argv[]) MSG_create_environment("platform.xml"); MSG_function_register("server", server); - MSG_function_register("client", client); - MSG_launch_application("deploy_bugged2.xml"); MSG_main();