X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..5073fed443fe7b2775f9eace3c512da49dab0e4a:/examples/msg/migration/migration.c diff --git a/examples/msg/migration/migration.c b/examples/msg/migration/migration.c index 04186bed6a..5abb763008 100644 --- a/examples/msg/migration/migration.c +++ b/examples/msg/migration/migration.c @@ -1,6 +1,5 @@ -/* $Id$ */ - -/* Copyright (c) 2009 The SimGrid team. All rights reserved. */ +/* Copyright (c) 2009, 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. */ @@ -17,16 +16,19 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, static int emigrant(int argc, char *argv[]) { m_task_t task; - INFO0 - ("I'll look for a new job on another machine where the grass is greener."); + XBT_INFO + ("I'll look for a new job on another machine where the grass is greener."); MSG_process_change_host(MSG_get_host_by_name("Boivin")); - INFO0("Yeah, found something to do"); + XBT_INFO("Yeah, found something to do"); task = MSG_task_create("job", 98095000, 0, NULL); MSG_task_execute(task); MSG_task_destroy(task); - INFO0("Moving back home after work"); + MSG_process_sleep(2); + XBT_INFO("Moving back home after work"); MSG_process_change_host(MSG_get_host_by_name("Jacquelin")); - INFO0("Uh, nothing to do here. Stopping now"); + MSG_process_change_host(MSG_get_host_by_name("Boivin")); + MSG_process_sleep(4); + XBT_INFO("Uh, nothing to do here. Stopping now"); return 0; } /* end_of_emigrant */ @@ -35,7 +37,8 @@ static int emigrant(int argc, char *argv[]) */ static int policeman(int argc, char *argv[]) { - INFO0("No function in the API to move the emigrant back, so do nothing."); + XBT_INFO + ("No function in the API to move the emigrant back, so do nothing."); return 0; } /* end_of_policeman */ @@ -48,8 +51,8 @@ int main(int argc, char *argv[]) /* Argument checking */ MSG_global_init(&argc, argv); if (argc < 3) { - CRITICAL1("Usage: %s platform_file deployment_file\n", argv[0]); - CRITICAL1("example: %s msg_platform.xml msg_deployment_suspend.xml\n", + XBT_CRITICAL("Usage: %s platform_file deployment_file\n", argv[0]); + XBT_CRITICAL("example: %s msg_platform.xml msg_deployment_suspend.xml\n", argv[0]); exit(1); } @@ -63,7 +66,7 @@ int main(int argc, char *argv[]) /* Run the simulation */ res = MSG_main(); - INFO1("Simulation time %g", MSG_get_clock()); + XBT_INFO("Simulation time %g", MSG_get_clock()); if (res == MSG_OK) res = MSG_clean();