X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d535428dd046734638334061f8b2ceb1a037854d..49ae6e61753b41f28accc4c0890097286d660e9f:/examples/java/suspend/LazyGuy.java diff --git a/examples/java/suspend/LazyGuy.java b/examples/java/suspend/LazyGuy.java index 225e6f6c1b..ffad084d17 100644 --- a/examples/java/suspend/LazyGuy.java +++ b/examples/java/suspend/LazyGuy.java @@ -1,36 +1,23 @@ -/* - * $Id$ - * - * Copyright 2006,2007 Martin Quinson, Malek Cherier - * 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. - */ +/* Copyright (c) 2006-2014. The SimGrid Team. + * All rights reserved. */ -import simgrid.msg.*; +/* 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. */ -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); +package suspend; + +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."); } - - - 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."); - } } \ No newline at end of file