Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let simgrid.dtd to be accessible from the web in order to enable automatic validation...
[simgrid.git] / examples / cxx / suspend / DreamMaster.cxx
index 0bf21ec..a4e58b3 100644 (file)
@@ -1,54 +1,54 @@
-#include "DreamMaster.hpp"\r
-#include "LazyGuy.hpp"\r
-#include <Host.hpp>\r
-#include <HostNotFoundException.hpp>\r
-#include <Msg.hpp>\r
-\r
-#include <iostream>\r
-using namespace std;\r
-\r
-MSG_IMPLEMENT_DYNAMIC(DreamMaster, Process);\r
-\r
-int DreamMaster::main(int argc, char** argv)\r
-{\r
-       \r
-       cout <<"[" << getName() << ":" << getHost().getName() << "] " << "Hello I'm " << getName() << " on " << getHost().getName() << "!" << endl;\r
-       \r
-       cout <<"[" << getName() << ":" << getHost().getName() << "] " << "Let's create a lazy guy.";\r
-       \r
-\r
-       LazyGuy* lazy;\r
-\r
-       try\r
-       {\r
-               Host currentHost = Host::currentHost();\r
-       \r
-               cout <<"[" << getName() << ":" << getHost().getName() << "] " << "Current host  name : " << currentHost.getName() << endl;\r
-       \r
-               lazy = new LazyGuy(currentHost,"LazyGuy");\r
-       \r
-               cout <<"[" << getName() << ":" << getHost().getName() << "] " << "Let's wait a little bit..." << endl;\r
-       \r
-               Process::sleep(10.0);\r
-       \r
-               cout <<"[" << getName() << ":" << getHost().getName() << "] " << "Let's wake the lazy guy up! >:) " << endl;\r
-       \r
-               lazy->resume();\r
-       \r
-       \r
-       }\r
-       catch(HostNotFoundException e)\r
-       {\r
-               cerr << e.toString() <<". Stopping Now!" << endl;\r
-               exit(1);\r
-       }\r
-       \r
-       //lazy->migrate(currentHost);\r
-       \r
-       cout <<"[" << getName() << ":" << getHost().getName() << "] " << "OK, goodbye now." << endl;\r
-\r
-       delete this;\r
-\r
-       return 0;\r
-       \r
-}
\ No newline at end of file
+#include "DreamMaster.hpp"
+#include "LazyGuy.hpp"
+#include <MsgHost.hpp>
+#include <HostNotFoundException.hpp>
+#include <Msg.hpp>
+
+#include <Msg.hpp>
+
+
+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;
+       
+}