X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05400c7ba9980ef221912b7cee424a8e0a263866..3187f0cf6163ddd170510f8aea2a6b9fc9dd3e46:/examples/msg/masterslave/masterslave_console.c diff --git a/examples/msg/masterslave/masterslave_console.c b/examples/msg/masterslave/masterslave_console.c index 0580cd29cd..0b54bfa997 100644 --- a/examples/msg/masterslave/masterslave_console.c +++ b/examples/msg/masterslave/masterslave_console.c @@ -1,9 +1,19 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2012. 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. */ +/** @addtogroup MSG_examples + * + * - masterslave/masterslave_console.c: demonstrate how to use + * lua files instead of XML for the platform and deployment + * declaration using @ref MSG_load_platform_script. The most + * interesting part is probably not the C code, but rather the + * masterslave/masterslave_script.lua, which demonstrates + * how to express the platform and deployment in lua. + * + */ + #include #include "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */ #include "surf/surfxml_parse.h" /* to override surf_parse and bypass the parser */ @@ -18,11 +28,6 @@ int master(int argc, char *argv[]); int slave(int argc, char *argv[]); MSG_error_t test_all(const char *); -typedef enum { - PORT_22 = 0, - MAX_CHANNEL -} channel_t; - /** Emitter function */ int master(int argc, char *argv[]) { @@ -68,19 +73,19 @@ int master(int argc, char *argv[]) int slave(int argc, char *argv[]) { m_task_t task = NULL; - int res; + _XBT_GNUC_UNUSED int res; int id = -1; char mailbox[80]; - int read; + _XBT_GNUC_UNUSED int read; read = sscanf(argv[1], "%d", &id); - xbt_assert1(read, "Invalid argument %s\n", argv[1]); + xbt_assert(read, "Invalid argument %s\n", argv[1]); sprintf(mailbox, "slave-%d", id); while (1) { res = MSG_task_receive(&(task), mailbox); - xbt_assert0(res == MSG_OK, "MSG_task_get failed"); + xbt_assert(res == MSG_OK, "MSG_task_get failed"); XBT_INFO("Received \"%s\"", MSG_task_get_name(task)); if (!strcmp(MSG_task_get_name(task), "finalize")) { @@ -102,8 +107,7 @@ int slave(int argc, char *argv[]) MSG_error_t test_all(const char *file) //(void) { MSG_error_t res = MSG_OK; - /* Simulation setting */ - MSG_set_channel_number(MAX_CHANNEL); + /*start by registering functions before loading script */ MSG_function_register("master", master); MSG_function_register("slave", slave);