X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c924fe6229cf13ed8de5cf4fbda1fa1b85c72cdd..5b9ad84fa8c98062be8d44fce9dc54bf44f29564:/org/simgrid/msg/Process.java diff --git a/org/simgrid/msg/Process.java b/org/simgrid/msg/Process.java index 714a7a3a75..c6005d6030 100644 --- a/org/simgrid/msg/Process.java +++ b/org/simgrid/msg/Process.java @@ -1,12 +1,10 @@ /* - * $Id$ - * - * Copyright 2006,2007 Martin Quinson, Malek Cherier + * Copyright 2006-2012 The SimGrid team * All right 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. + * (GNU LGPL) which comes with this package. */ package org.simgrid.msg; @@ -54,7 +52,7 @@ public abstract class Process implements Runnable { * a native process. Even if this attribute is public you must never * access to it. It is set automatically during the build of the object. */ - public long bind; + private long bind; /** * Indicates if the process is started */ @@ -241,15 +239,6 @@ public abstract class Process implements Runnable { public void pause() { suspend(); } - /** - * Resumes a suspended process by resuming the task on which it was - * waiting for the completion. - * DEPRECATED: use resume instead. - */ - @Deprecated - public void restart() { - resume(); - } /** * Resumes a suspended process by resuming the task on which it was * waiting for the completion.