X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a8cd62135619ad52e05ae1c929ef07e166e4260..b3b356352e87ae00a20f737c48e19b0c8413455a:/examples/msg/suspend/suspend.c diff --git a/examples/msg/suspend/suspend.c b/examples/msg/suspend/suspend.c index bdc008558b..c26e38fb00 100644 --- a/examples/msg/suspend/suspend.c +++ b/examples/msg/suspend/suspend.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2007, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007, 2009-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. */ -#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 */ /* Create a log channel to have nice outputs. */ @@ -12,6 +12,12 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example"); +#define SLEEP(duration) \ + if (MSG_process_sleep(duration) != MSG_OK) \ + xbt_die("What's going on??? I failed to sleep!"); \ + else \ + (void)0 + /** @addtogroup MSG_examples * * - suspend/suspend.c: Demonstrates how to suspend and resume processes using @ref MSG_process_suspend and @ref MSG_process_resume. @@ -23,6 +29,15 @@ static int lazy_guy(int argc, char *argv[]) XBT_INFO("Nobody's watching me ? Let's go to sleep."); MSG_process_suspend(MSG_process_self()); XBT_INFO("Uuuh ? Did somebody call me ?"); + + XBT_INFO("Going to sleep..."); + SLEEP(10.0); + XBT_INFO("Mmm... waking up."); + + XBT_INFO("Going to sleep one more time..."); + SLEEP(10.0); + XBT_INFO("Waking up once for all!"); + XBT_INFO("Mmmh, goodbye now."); return 0; } /* end_of_lazy_guy */ @@ -36,9 +51,26 @@ static int dream_master(int argc, char *argv[]) XBT_INFO("Let's create a lazy guy."); lazy = MSG_process_create("Lazy", lazy_guy, NULL, MSG_host_self()); XBT_INFO("Let's wait a little bit..."); - MSG_process_sleep(10.0); + SLEEP(10.0); XBT_INFO("Let's wake the lazy guy up! >:) BOOOOOUUUHHH!!!!"); MSG_process_resume(lazy); + + SLEEP(5.0); + XBT_INFO("Suspend the lazy guy while he's sleeping..."); + MSG_process_suspend(lazy); + XBT_INFO("Let him finish his siesta."); + SLEEP(10.0); + XBT_INFO("Wake up, lazy guy!"); + MSG_process_resume(lazy); + + SLEEP(5.0); + XBT_INFO("Suspend again the lazy guy while he's sleeping..."); + MSG_process_suspend(lazy); + XBT_INFO("This time, don't let him finish his siesta."); + SLEEP(2.0); + XBT_INFO("Wake up, lazy guy!"); + MSG_process_resume(lazy); + XBT_INFO("OK, goodbye now."); return 0; } /* end_of_dram_master */