Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
initial (almost working) release of a separate package for the Java bindings of SimGrid
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 2 Dec 2010 16:15:33 +0000 (16:15 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 2 Dec 2010 16:15:33 +0000 (16:15 +0000)
commitfc783dc02e4e1bf955b152713d1df4914ae3adb8
tree28c379a4c2929358167bfc0f3c8208f1726e0817
initial (almost working) release of a separate package for the Java bindings of SimGrid

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/contrib/trunk/simgrid-java@8900 48e7efb5-ca39-0410-a469-dd3cf9ba447f
80 files changed:
CMakeLists.txt [new file with mode: 0644]
ChangeLog [new file with mode: 0644]
FindSimGrid.cmake [new file with mode: 0644]
examples/basic/.project [new file with mode: 0644]
examples/basic/BasicTest.java [new file with mode: 0644]
examples/basic/FinalizeTask.java [new file with mode: 0644]
examples/basic/Forwarder.java [new file with mode: 0644]
examples/basic/Master.java [new file with mode: 0644]
examples/basic/README [new file with mode: 0644]
examples/basic/Slave.java [new file with mode: 0644]
examples/basic/basic.tesh [new file with mode: 0644]
examples/basic/basic_deployment.xml [new file with mode: 0644]
examples/basic/basic_platform.xml [new file with mode: 0644]
examples/basic/deploy.xml [new file with mode: 0644]
examples/comm_time/CommTimeTest.java [new file with mode: 0644]
examples/comm_time/FinalizeTask.java [new file with mode: 0644]
examples/comm_time/Master.java [new file with mode: 0644]
examples/comm_time/README [new file with mode: 0644]
examples/comm_time/Slave.java [new file with mode: 0644]
examples/comm_time/comm_time.tesh [new file with mode: 0644]
examples/comm_time/comm_time_deployment.xml [new file with mode: 0644]
examples/comm_time/comm_time_platform.xml [new file with mode: 0644]
examples/java_test.mk [new file with mode: 0644]
examples/mutualExclusion/centralized/.classpath [new file with mode: 0644]
examples/mutualExclusion/centralized/.project [new file with mode: 0644]
examples/mutualExclusion/centralized/Coordinator.java [new file with mode: 0644]
examples/mutualExclusion/centralized/GrantTask.java [new file with mode: 0644]
examples/mutualExclusion/centralized/MutexCentral.java [new file with mode: 0644]
examples/mutualExclusion/centralized/Node.java [new file with mode: 0644]
examples/mutualExclusion/centralized/ReleaseTask.java [new file with mode: 0644]
examples/mutualExclusion/centralized/RequestTask.java [new file with mode: 0644]
examples/mutualExclusion/centralized/mutex_centralized.tesh [new file with mode: 0644]
examples/mutualExclusion/centralized/mutex_centralized_deployment.xml [new file with mode: 0644]
examples/mutualExclusion/ring3.xml [new file with mode: 0644]
examples/ping_pong/PingPongTask.java [new file with mode: 0644]
examples/ping_pong/PingPongTest.java [new file with mode: 0644]
examples/ping_pong/README [new file with mode: 0644]
examples/ping_pong/Receiver.java [new file with mode: 0644]
examples/ping_pong/Sender.java [new file with mode: 0644]
examples/ping_pong/hs_err_pid27276.log [new file with mode: 0644]
examples/ping_pong/hs_err_pid28000.log [new file with mode: 0644]
examples/ping_pong/ping_pong.tesh [new file with mode: 0644]
examples/ping_pong/ping_pong_deployment.xml [new file with mode: 0644]
examples/ping_pong/ping_pong_platform.xml [new file with mode: 0644]
examples/runtest [new file with mode: 0755]
examples/suspend/DreamMaster.java [new file with mode: 0644]
examples/suspend/LazyGuy.java [new file with mode: 0644]
examples/suspend/README [new file with mode: 0644]
examples/suspend/SuspendTest.java [new file with mode: 0644]
examples/suspend/suspend.tesh [new file with mode: 0644]
examples/suspend/suspend_deployment.xml [new file with mode: 0644]
examples/suspend/suspend_platform.xml [new file with mode: 0644]
org/simgrid/msg/ApplicationHandler.java [new file with mode: 0644]
org/simgrid/msg/Host.java [new file with mode: 0644]
org/simgrid/msg/HostFailureException.java [new file with mode: 0644]
org/simgrid/msg/HostNotFoundException.java [new file with mode: 0644]
org/simgrid/msg/JniException.java [new file with mode: 0644]
org/simgrid/msg/Msg.java [new file with mode: 0644]
org/simgrid/msg/MsgException.java [new file with mode: 0644]
org/simgrid/msg/MsgNative.java [new file with mode: 0644]
org/simgrid/msg/NativeException.java [new file with mode: 0644]
org/simgrid/msg/Process.java [new file with mode: 0644]
org/simgrid/msg/ProcessNotFoundException.java [new file with mode: 0644]
org/simgrid/msg/Sem.java [new file with mode: 0644]
org/simgrid/msg/Task.java [new file with mode: 0644]
org/simgrid/msg/TaskCancelledException.java [new file with mode: 0644]
org/simgrid/msg/TimeoutException.java [new file with mode: 0644]
org/simgrid/msg/TransferFailureException.java [new file with mode: 0644]
src/jmsg.c [new file with mode: 0644]
src/jmsg.h [new file with mode: 0644]
src/jmsg_application_handler.c [new file with mode: 0644]
src/jmsg_application_handler.h [new file with mode: 0644]
src/jmsg_host.c [new file with mode: 0644]
src/jmsg_host.h [new file with mode: 0644]
src/jmsg_process.c [new file with mode: 0644]
src/jmsg_process.h [new file with mode: 0644]
src/jmsg_task.c [new file with mode: 0644]
src/jmsg_task.h [new file with mode: 0644]
src/jxbt_utilities.c [new file with mode: 0644]
src/jxbt_utilities.h [new file with mode: 0644]