Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reduce the coupling between main lib and java binding
[simgrid.git] / src / java / simgrid / msg / MsgNative.java
index aa7a3b9..e7f7759 100644 (file)
@@ -18,9 +18,6 @@ package simgrid.msg;
  */
 final class MsgNative {
 
-       final static native
-       void selectContextFactory(String name) throws NativeException;
-
        /******************************************************************
         * The natively implemented methods connected to the MSG Process  *
         ******************************************************************/
@@ -106,11 +103,9 @@ final class MsgNative {
         *
         * @return                The process with the specified PID.
         *
-        * @exception            NativeException if the SimGrid native code failed.
-        *
         * @see                 Process.getFromPID()
         */
-       final static native Process processFromPID(int PID) throws NativeException;
+       final static native Process processFromPID(int PID) ;
 
        /**
         * The natively implemented method to get the PID of a MSG process.
@@ -430,4 +425,4 @@ final class MsgNative {
         */ 
        final static native void taskSendBounded(String alias, Task task, double maxrate) throws TransferFailureException,HostFailureException,TimeoutException;
 
-}
\ No newline at end of file
+}