Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git://scm.gforge.inria.fr/simgrid/simgrid-java into vmtrace
[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  * Add Process.getProperty, Host.getProperty, Host.getProperty: allows you to retrieve the properties of the processes/hosts
15  
16  * 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.
17 SimGrid-java (3.7.1) stable; urgency=low
18   
19  The "Java aint got to be bloated and slow" release
20  
21  Major cleanups:
22  * Various internal cleanups and performance improvement
23    Simulations are expected to run up to twice faster or so
24  * Make Process.kill(process) an instance method, not a static one
25  * User processes are not java.lang.Thread subclasses. 
26    This breaks the compatibility (sorry), but previous API was
27    brain-dead, making it impossible to have non-trivial
28    initializations in the process constructor. 
29  * Require a full constructor per Process sub-class.
30    Kinda breaks the compatibility (sorry), but this allows a much more
31    efficient way to launch the processes at simulation startup.
32  * Do not embeed our version of semaphores, java 1.5 can be considered
33    as sufficiently prevalent for us to not dupplicate its features.
34  * Lot of bug fixes
35  
36  Extend the API:
37  * Add examples for almost every part of the API
38    We spotted and fixed a lot of bugs in the process
39  
40  * New module: asynchronous communication API
41  * New function: Process.sleep()
42    It takes milliseconds as argument, just as java.lang.Thread.sleep()
43  * New module: org.simgrid.msg.Mutex (SimGrid mutexes)
44  * New module: org.simgrid.msg.RngStream (RngStreams random generators)
45
46  -- 2012-06-12 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
47  
48 SimGrid-java (1.0 (3.6) unstable; urgency=low
49
50  * Initial release.
51  * Split of every thing from simgrid v3.5 into a separate package.
52
53  -- 2011-10-05 Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>