X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eb0c02dd955faf07077c381f0aaf262081d61c77..709596538aad175a7b69477ea32c90050e856844:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 486acd8cc1..605242b95a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,11 +8,16 @@ S4U: on symmetric routes. - Introduce a Mailbox::get_async() with no payload parameter. You can use the new Comm::get_payload() once the communication is over to retrieve the payload. + - Implement recursive mutexes. Simply pass true to the constructor to get one. SMPI: - New SMPI_app_instance_join(): wait for the completion of a started MPI instance - MPI_UNIVERSE_SIZE now initialized to the total amount of hosts in the platform +sthread: + - Implement recursive pthreads. + - Many bug fixes. + Python: - Make the host_load plugin available from Python. See examples/python/plugin-host-load - Mailbox::get_async() does not return a pair anymore. Use comm.get_payload() instead. @@ -27,6 +32,9 @@ C API: Plugins: - Revamp the battery plugin: rewrite completely the API, for a better usability. The examples were updated accordingly. + - Revamp of the Photovoltaic plugin: now called SolarPanel and complete rewrite of the API + - Add chiller plugin: enable the management of chillers consuming electrical energy + to compensate heat generated by hosts. ---------------------------------------------------------------------------- @@ -70,10 +78,10 @@ S4U: That is, callbacks registered in Exec::on_suspend_cb will not be fired for Comms nor Ios. New S4U plugins: - - Battery: Enable the management of batteries. + - Battery: Enable the management of batteries on hosts. See the examples under examples/cpp/battery-* and the documentation in the Plugins page. - - SolarPanel: Enable the management of solar panels. - See the examples under examples/cpp/solar-panel-* and the documentation in the Plugins page. + - Photovoltaic: Enable the management of photovoltaic panels on hosts. + See the examples under examples/cpp/photovoltaic-* and the documentation in the Plugins page. Kernel: - optimize an internal data structure (use a set instead of a list for ongoing activities),