X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c1cb2509d6783e56d7334bb4872a1101318816f5..4365fa8e81736673eae923310a05cdbf78ec88d8:/examples/msg/masterslave/masterslave_arg.c diff --git a/examples/msg/masterslave/masterslave_arg.c b/examples/msg/masterslave/masterslave_arg.c index 7ad5d0b624..4facb5a9fe 100644 --- a/examples/msg/masterslave/masterslave_arg.c +++ b/examples/msg/masterslave/masterslave_arg.c @@ -1,11 +1,11 @@ -/* Copyright (c) 2010. The SimGrid Team. +/* Copyright (c) 2010-2014. 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 "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */ +#include "simgrid/msg.h" /* Yeah! If you want to use msg, you need to include simgrid/msg.h */ #include "xbt/sysdep.h" /* calloc, printf */ /* Create a log channel to have nice outputs. */ @@ -23,8 +23,9 @@ int slave(int argc, char *argv[]); long number_of_jobs; long number_of_slaves; -long my_random(long n) { - return n*(rand()/(RAND_MAX+1)); +static long my_random(long n) +{ + return n * (rand() / ((double)RAND_MAX + 1)); } /** Emitter function */ @@ -35,7 +36,7 @@ int master(int argc, char *argv[]) for (i = 1; i <= number_of_jobs; i++) { char mailbox[256]; char sprintf_buffer[256]; - m_task_t task = NULL; + msg_task_t task = NULL; sprintf(mailbox, "slave-%ld", i % number_of_slaves); sprintf(sprintf_buffer, "Task_%d", i); @@ -54,7 +55,7 @@ int master(int argc, char *argv[]) char mailbox[80]; sprintf(mailbox, "slave-%ld", i % number_of_slaves); - m_task_t finalize = MSG_task_create("finalize", 0, 0, 0); + msg_task_t finalize = MSG_task_create("finalize", 0, 0, 0); MSG_task_send(finalize, mailbox); } @@ -65,9 +66,8 @@ int master(int argc, char *argv[]) /** Receiver function */ int slave(int argc, char *argv[]) { - m_task_t task = NULL; + msg_task_t task = NULL; _XBT_GNUC_UNUSED int res; - int id = -1; XBT_DEBUG("mailbox: %s",MSG_process_get_name(MSG_process_self())); while (1) { @@ -92,17 +92,16 @@ int slave(int argc, char *argv[]) /** Main function */ int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; long i; - MSG_global_init(&argc, argv); + MSG_init(&argc, argv); if (argc < 4) { printf("Usage: %s platform_file number_of_jobs number_of_slaves\n", argv[0]); printf("example: %s msg_platform.xml 10 5\n", argv[0]); exit(1); } - MSG_set_channel_number(0); MSG_function_register("master", master); MSG_function_register("slave", slave); @@ -110,32 +109,35 @@ int main(int argc, char *argv[]) number_of_jobs = atol(argv[2]); number_of_slaves = atol(argv[3]); + xbt_dynar_t host_dynar = MSG_hosts_as_dynar(); + long number_max = xbt_dynar_length(host_dynar); + XBT_INFO("Got %ld slaves, %ld tasks to process, and %ld hosts", number_of_slaves, number_of_jobs,number_max); - XBT_INFO("Got %ld slaves, %ld tasks to process, and %d hosts", number_of_slaves, number_of_jobs,MSG_get_host_number()); - - m_host_t *host_table = MSG_get_host_table(); + msg_host_t *host_table = xbt_dynar_to_array(host_dynar); + //xbt_dynar_free(&host_dynar); MSG_process_create( "master", master, NULL, - host_table[my_random(number_of_slaves)] + host_table[my_random(number_max)] ); for(i = 0 ; i