X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9f54e5c450791e19b01f31e86c93e5a603fd0c4b..1a042c3771c14fdc9ec1a98ca60fc70ed933dc17:/examples/msg/masterslave/masterslave_mailbox.c diff --git a/examples/msg/masterslave/masterslave_mailbox.c b/examples/msg/masterslave/masterslave_mailbox.c index 32e5051a0c..80497e5aba 100644 --- a/examples/msg/masterslave/masterslave_mailbox.c +++ b/examples/msg/masterslave/masterslave_mailbox.c @@ -1,6 +1,5 @@ -/* $Id$ */ - -/* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved. */ +/* Copyright (c) 2010. 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. */ @@ -50,11 +49,12 @@ int master(int argc, char *argv[]) char mailbox[80]; sprintf(mailbox,"slave-%ld",i % slaves_count); - MSG_task_send(MSG_task_create("finalize", 0, 0, 0), mailbox); + m_task_t finalize = MSG_task_create ("finalize", 0, 0, 0); + MSG_task_send(finalize, mailbox); } // INFO0("Goodbye now!"); - exit(0); + return 0; } /* end_of_master */ /** Receiver function */ @@ -125,6 +125,7 @@ int main(int argc, char *argv[]) exit(1); } res = test_all(argv[1],argv[2]); + SIMIX_message_sizes_output("toto.txt"); MSG_clean(); if(res==MSG_OK)