X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2033091e2339a120d594b4cbf81a89d72faa0d05..cf8bbc99663c8ca036cdf7266c4848f348509676:/examples/java/suspend/LazyGuy.java diff --git a/examples/java/suspend/LazyGuy.java b/examples/java/suspend/LazyGuy.java index 19288e178f..74231fe6b7 100644 --- a/examples/java/suspend/LazyGuy.java +++ b/examples/java/suspend/LazyGuy.java @@ -1,24 +1,24 @@ -/* - * $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, 2016. 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 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."); - } +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."); + } } \ No newline at end of file