Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a84a2f2e1e4b047b7b7659982abff881f458649c
[simgrid.git] / ChangeLog
1 SimGrid-java (3.8) unstable; urgency=low
2
3  * Introduce org.simgrid.trace.Trace (partial implementation of JAVA bindings
4    for the TRACE API). 
5    Although all TRACE methods appear in the Trace class, please not that only
6    few of thems are really implemented at the JNI level (see ./src/jtrace.c
7    for further information). 
8  Extend the API:
9  * New module: org.simgrid.msg.File (SimGrid File management functions)
10  * New Module: org.simgrid.msg.VM (SimGrid interface to mimick IAAS 
11 clouds)
12  * Change the meaning of Process.restart: now restart the process from the start, like MSG_process_restart in C.
13  * Add Process.setAutoRestart: handling of process restart when failed host comes back.
14
15  * Introduce a new context factory based on Coroutines (read the doc to know how to use it): simulations are expected to run up to five times faster.
16 SimGrid-java (3.7.1) stable; urgency=low
17   
18  The "Java aint got to be bloated and slow" release
19  
20  Major cleanups:
21  * Various internal cleanups and performance improvement
22    Simulations are expected to run up to twice faster or so
23  * Make Process.kill(process) an instance method, not a static one
24  * User processes are not java.lang.Thread subclasses. 
25    This breaks the compatibility (sorry), but previous API was
26    brain-dead, making it impossible to have non-trivial
27    initializations in the process constructor. 
28  * Require a full constructor per Process sub-class.
29    Kinda breaks the compatibility (sorry), but this allows a much more
30    efficient way to launch the processes at simulation startup.
31  * Do not embeed our version of semaphores, java 1.5 can be considered
32    as sufficiently prevalent for us to not dupplicate its features.
33  * Lot of bug fixes
34  
35  Extend the API:
36  * Add examples for almost every part of the API
37    We spotted and fixed a lot of bugs in the process
38  
39  * New module: asynchronous communication API
40  * New function: Process.sleep()
41    It takes milliseconds as argument, just as java.lang.Thread.sleep()
42  * New module: org.simgrid.msg.Mutex (SimGrid mutexes)
43  * New module: org.simgrid.msg.RngStream (RngStreams random generators)
44
45  -- 2012-06-12 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
46  
47 SimGrid-java (1.0 (3.6) unstable; urgency=low
48
49  * Initial release.
50  * Split of every thing from simgrid v3.5 into a separate package.
51
52  -- 2011-10-05 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>