Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove Java bindings. They are not updated since maybe 10 years
[simgrid.git] / src / bindings / java / org / simgrid / msg / Mutex.java
diff --git a/src/bindings/java/org/simgrid/msg/Mutex.java b/src/bindings/java/org/simgrid/msg/Mutex.java
deleted file mode 100644 (file)
index f3d9c47..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* Copyright (c) 2012-2021. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-package org.simgrid.msg;
-/** A mutex  implemented on top of SimGrid synchronization mechanisms.
- * You can use it exactly the same way that you use the mutexes,
- * but to handle the interactions between the processes within the simulation.
- *
- * Don't mix simgrid synchronization with Java native one, or it will deadlock!
- */
-public class Mutex {
-       private long bind; // The C object -- don't touch it
-
-       public Mutex() {
-               init();
-       }
-
-       /** @deprecated (from Java9 onwards) */
-       @Deprecated @Override
-       protected void finalize() throws Throwable {
-               nativeFinalize();
-       }
-       private native void nativeFinalize();
-       private native void init();
-       public native void acquire();
-       public native void release();
-
-       /** Class initializer, to initialize various JNI stuff */
-       public static native void nativeInit();
-       static {
-               org.simgrid.NativeLib.nativeInit();
-               nativeInit();
-       }       
-}
-
-