Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[java] unpack dll/so to a tempDir instead of messing with their name
[simgrid.git] / src / bindings / java / org / simgrid / msg / Process.java
index 29a69ca..5e53e74 100644 (file)
@@ -208,8 +208,9 @@ public abstract class Process implements Runnable {
        public native void resume();    
        /** Tests if a process is suspended.
         *
-        * @see {@link #suspend()} and {@link #resume()}
-        */ 
+        * @see #suspend()
+        * @see #resume()
+        */
        public native boolean isSuspended();
        
        /**
@@ -362,7 +363,7 @@ public abstract class Process implements Runnable {
         */
        private static native void nativeInit();
        static {
-               Msg.nativeInit();
+               org.simgrid.NativeLib.nativeInit();
                nativeInit();
        }
        /**