X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d3e7225dadcad644d2f4d4492e05a4d8341af887..7a70dde587bf05977d0f9e1d854e98f192a79426:/org/simgrid/msg/Process.java diff --git a/org/simgrid/msg/Process.java b/org/simgrid/msg/Process.java index dcfd43f3af..b726b8df69 100644 --- a/org/simgrid/msg/Process.java +++ b/org/simgrid/msg/Process.java @@ -230,16 +230,31 @@ public abstract class Process implements Runnable { /** * Suspends the process by suspending the task on which it was * waiting for the completion. - * */ - public native void pause(); + public native void suspend(); + /** + * Suspends the process by suspending the task on which it was + * waiting for the completion. + * DEPRECATED: use suspend instead. + */ + @Deprecated + public void pause() { + suspend(); + } /** * Resumes a suspended process by resuming the task on which it was * waiting for the completion. - * - * + * DEPRECATED: use resume instead. */ - public native void restart(); + @Deprecated + public void restart() { + resume(); + } + /** + * Resumes a suspended process by resuming the task on which it was + * waiting for the completion. + */ + public native void resume(); /** * Tests if a process is suspended. *