X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0844c6822ce0a2844a0500dafc4e5bc5d37f01bb..ed5b6e45b9957b00a2c41f01ce9da418da78cecb:/examples/cxx/suspend/DreamMaster.cxx diff --git a/examples/cxx/suspend/DreamMaster.cxx b/examples/cxx/suspend/DreamMaster.cxx index 62ed58f119..aac7b71ebd 100644 --- a/examples/cxx/suspend/DreamMaster.cxx +++ b/examples/cxx/suspend/DreamMaster.cxx @@ -1,54 +1,54 @@ -#include "DreamMaster.hpp" -#include "LazyGuy.hpp" -#include -#include -#include - -#include - - -MSG_IMPLEMENT_DYNAMIC(DreamMaster, Process); - -int DreamMaster::main(int argc, char** argv) -{ - - info("Hello"); - - info("Let's create a lazy guy."); - - - LazyGuy* lazy; - - try - { - Host currentHost = Host::currentHost(); - - info(TEXT_("Current host name : ") + TEXT_(currentHost.getName())); - - lazy = new LazyGuy(currentHost,"LazyGuy"); - - info("Let's wait a little bit..."); - - Process::sleep(10.0); - - info("Let's wake the lazy guy up! >:) "); - - lazy->resume(); - - - } - catch(HostNotFoundException e) - { - error(TEXT_(e.toString()) + TEXT_(". Stopping Now!")); - exit(1); - } - - //lazy->migrate(currentHost); - - info("OK, goodbye now."); - - delete this; - - return 0; - -} \ No newline at end of file +#include "DreamMaster.hpp" +#include "LazyGuy.hpp" +#include +#include +#include + +#include + + +MSG_IMPLEMENT_DYNAMIC(DreamMaster, Process) + +int DreamMaster::main(int argc, char** argv) +{ + + info("Hello"); + + info("Let's create a lazy guy."); + + + LazyGuy* lazy; + + try + { + Host currentHost = Host::currentHost(); + + info(TEXT_("Current host name : ") + TEXT_(currentHost.getName())); + + lazy = new LazyGuy(currentHost,"LazyGuy"); + + info("Let's wait a little bit..."); + + Process::sleep(10.0); + + info("Let's wake the lazy guy up! >:) "); + + lazy->resume(); + + + } + catch(HostNotFoundException e) + { + error(TEXT_(e.toString()) + TEXT_(". Stopping Now!")); + exit(1); + } + + //lazy->migrate(currentHost); + + info("OK, goodbye now."); + + delete this; + + return 0; + +}