Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix doxygen comments.
[simgrid.git] / examples / java / suspend / LazyGuy.java
index 19288e1..627cc36 100644 (file)
@@ -1,24 +1,23 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * Copyright 2006-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. 
  */
+package suspend;
 
-import simgrid.msg.*;
-
-public class LazyGuy extends simgrid.msg.Process {
-    
-    public void main(String[] args) throws JniException, NativeException {
-       Msg.info("Hello !");
-        
-       Msg.info("Nobody's watching me ? Let's go to sleep.");
-       simgrid.msg.Process.currentProcess().pause();
-               
-       Msg.info("Uuuh ? Did somebody call me ?");
-       Msg.info("Mmmh, goodbye now."); 
-    }
+import org.simgrid.msg.Host;
+import org.simgrid.msg.Msg;
+import org.simgrid.msg.Process;
+import org.simgrid.msg.MsgException;
+public class LazyGuy extends Process {
+       public LazyGuy(Host host, String name, String[]args) {
+               super(host,name,args);
+       } 
+       public void main(String[] args) throws MsgException {
+               Msg.info("Nobody's watching me ? Let's go to sleep.");
+               suspend();
+               Msg.info("Uuuh ? Did somebody call me ?");
+               Msg.info("Mmmh, goodbye now.");
+       }
 }
\ No newline at end of file