X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/30769c28f7021367f7d7f54e868dde6c2c17c050..c1a801890b53e18c22319f0d875db0f75711776f:/org/simgrid/msg/MsgNative.java diff --git a/org/simgrid/msg/MsgNative.java b/org/simgrid/msg/MsgNative.java index c278bb1379..3c11df804f 100644 --- a/org/simgrid/msg/MsgNative.java +++ b/org/simgrid/msg/MsgNative.java @@ -32,7 +32,7 @@ final class MsgNative { * @see Process constructors. */ final static native - void processCreate(Process process, Host host); + void processCreate(Process process, String hostName) throws HostNotFoundException; /** * The natively implemented method to kill all the process of the simulation. @@ -150,7 +150,7 @@ final class MsgNative { * @see Process.migrate() * @see Host.getByName() */ - final static native void processChangeHost(Process process, Host host) ; + final static native void processMigrate(Process process, Host host) ; /** * The natively implemented native to request the current process to sleep @@ -427,4 +427,6 @@ final class MsgNative { */ final static native void taskSendBounded(String alias, Task task, double maxrate) throws TransferFailureException,HostFailureException,TimeoutException; + final static native void taskDSend(String mailbox, Task task); + }