X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1b3fdc02915a23586bf2595485db216c892f2e18..77d095374d3f966ce0f54f3837116c73bc3e52e4:/src/bindings/java/org/simgrid/msg/Task.java diff --git a/src/bindings/java/org/simgrid/msg/Task.java b/src/bindings/java/org/simgrid/msg/Task.java index 0ee65c4b81..64cf04257f 100644 --- a/src/bindings/java/org/simgrid/msg/Task.java +++ b/src/bindings/java/org/simgrid/msg/Task.java @@ -42,11 +42,11 @@ public class Task { * * @param flopsAmount A value of the processing amount (in flop) needed to process the task. * If 0, then it cannot be executed with the execute() method. - * This value has to be >= 0. + * This value has to be ≥ 0. * * @param bytesAmount A value of amount of data (in bytes) needed to transfert this task. * If 0, then it cannot be transfered with the get() and put() methods. - * This value has to be >= 0. + * This value has to be ≥ 0. */ public Task(String name, double flopsAmount, double bytesAmount) { create(name, flopsAmount, bytesAmount); @@ -199,7 +199,7 @@ public class Task { * @throws HostFailureException * @throws TransferFailureException */ - public void send(String mailbox) throws TransferFailureException, HostFailureException, TimeoutException { + public void send(String mailbox) throws TransferFailureException, HostFailureException, TimeoutException, NativeException { send(mailbox, -1); } @@ -213,7 +213,7 @@ public class Task { * @throws HostFailureException * @throws TransferFailureException */ - public native void send(String mailbox, double timeout) throws TransferFailureException, HostFailureException, TimeoutException; + public native void send(String mailbox, double timeout) throws TransferFailureException, HostFailureException, TimeoutException, NativeException; /** Sends the task on the specified mailbox (capping the sending rate to \a maxrate) * @@ -349,7 +349,7 @@ public class Task { */ public native static int listenFrom(String mailbox); /** - * Listen whether there is a waiting task on the mailbox identified by the specified alias + * Listen whether there is a task waiting (either for a send or a recv) on the mailbox identified by the specified alias */ public native static boolean listen(String mailbox); @@ -363,7 +363,7 @@ public class Task { */ public static native void nativeInit(); static { - Msg.nativeInit(); + org.simgrid.NativeLib.nativeInit(); nativeInit(); }