Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Cleanup RegionSnapshot buffer code
[simgrid.git] / ChangeLog.SimGrid-java
1 ChangeLog for SimGrid-java, before its integration into the main source tree.
2
3 SimGrid-java (3.9) stable; urgency=low
4
5  -- 2013-01-30 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
6
7 SimGrid-java (3.8.1) stable; urgency=low
8
9  * New module: org.simgrid.trace.Trace (SimGrid trace bindings)
10    Warning: all methods are visible, but only some of them are
11    implemented so far. Check the source (src/jtrace.c)
12    for further information.
13  * New module: org.simgrid.msg.File (SimGrid File management functions)
14  * New Module: org.simgrid.msg.VM (SimGrid interface to mimick IAAS clouds)
15  * Change the meaning of Process.restart: now restart the process from
16    the begining, like MSG_process_restart in C.
17  * Add Process.setAutoRestart: handling of process restart when failed
18    host comes back.
19  * Add Process.getProperty, Host.getProperty, Host.getProperty: allows
20    you to retrieve the properties of the processes/hosts
21  * Deprecate Msg.clean(): you can just forget about it now.
22  * New function Process.getCount(), that only works when compiling
23    with the not yet released version 3.9 of the C library.
24
25  * New context factory based on Coroutines. It mandates a modified JVM
26    but then, the simulations run about five times faster, and there is
27    no limit to the amount of processes (beside of the available memory).
28
29  -- 2012-12-04 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
30
31 SimGrid-java (3.7.1) stable; urgency=low
32
33  The "Java aint got to be bloated and slow" release
34
35  Major cleanups:
36  * Various internal cleanups and performance improvement
37    Simulations are expected to run up to twice faster or so
38  * Make Process.kill(process) an instance method, not a static one
39  * User processes are not java.lang.Thread subclasses.
40    This breaks the compatibility (sorry), but previous API was
41    brain-dead, making it impossible to have non-trivial
42    initializations in the process constructor.
43  * Require a full constructor per Process sub-class.
44    Kinda breaks the compatibility (sorry), but this allows a much more
45    efficient way to launch the processes at simulation startup.
46  * Do not embeed our version of semaphores, java 1.5 can be considered
47    as sufficiently prevalent for us to not dupplicate its features.
48  * Lot of bug fixes
49
50  Extend the API:
51  * Add examples for almost every part of the API
52    We spotted and fixed a lot of bugs in the process
53
54  * New module: asynchronous communication API
55  * New function: Process.sleep()
56    It takes milliseconds as argument, just as java.lang.Thread.sleep()
57  * New module: org.simgrid.msg.Mutex (SimGrid mutexes)
58  * New module: org.simgrid.msg.RngStream (RngStreams random generators)
59
60  -- 2012-06-12 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
61
62 SimGrid-java (1.0 (3.6) unstable; urgency=low
63
64  * Initial release.
65  * Split of every thing from simgrid v3.5 into a separate package.
66
67  -- 2011-10-05 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>