X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f786c09b12eb263982346069d7505bbc97af6eb7..d535428dd046734638334061f8b2ceb1a037854d:/examples/java/suspend/LazyGuy.java diff --git a/examples/java/suspend/LazyGuy.java b/examples/java/suspend/LazyGuy.java index 19288e178f..225e6f6c1b 100644 --- a/examples/java/suspend/LazyGuy.java +++ b/examples/java/suspend/LazyGuy.java @@ -11,7 +11,19 @@ import simgrid.msg.*; public class LazyGuy extends simgrid.msg.Process { + + + public LazyGuy() { + super(); + } + public LazyGuy(Host host,String name) + throws NullPointerException, HostNotFoundException, JniException, NativeException + { + super(host,name,null); + } + + public void main(String[] args) throws JniException, NativeException { Msg.info("Hello !");