Logo AND Algorithmique Numérique Distribuée

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