Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move some functions from MsgNative to Task again,to depopulate MsgNative/jmsg.c
[simgrid.git] / org / simgrid / msg / MsgNative.java
index c93dd88..3231615 100644 (file)
@@ -264,17 +264,6 @@ final class MsgNative {
         * The natively implemented methods connected to the MSG task     *
         ******************************************************************/
 
-       /**
-        * The natively implemented method to get the sender of a task.
-        *
-        * @param    task            The task (valid) to get the sender.
-        *
-        * @return                The sender of the task.
-        *
-        * @see                    Task.getSender()
-        */
-       final static native Process taskGetSender(Task task);
-
        /**
         * The natively implementd method to get the source of a task.
         *
@@ -287,17 +276,6 @@ final class MsgNative {
         */
        final static native Host taskGetSource(Task task);
 
-       /**
-        * The natively implemented method to get the name of the task.
-        *
-        * @param task            The task to get the name.
-        *
-        * @return                 The name of the specified task.
-        *
-        * @see                    Task.getName()
-        */
-       final static native String taskGetName(Task task);
-
        /**
         * The natively implemented method to cancel a task.
         *
@@ -378,6 +356,4 @@ 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);
-
 }