X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cfb3987654b857620ba388fab9883a095debeb72..eb0c02dd955faf07077c381f0aaf262081d61c77:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 158d75bcf4..486acd8cc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ SimGrid (3.34.1) not released (Target: fall 2023) S4U: - New class ActivitySet to ease wait_any()/test_any()/wait_all() + - Deprecate {Comm,Io,Exec}::{wait_any,wait_all,test_any} and friends - New function NetZone::add_route(host1, host2, links) when you don't need gateways Also add a variant with s4u::Link, when you don't want to specify the directions on symmetric routes. @@ -15,6 +16,17 @@ SMPI: 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. + - Comm::waitall/waitany/testany() are gone. Please use ActivitySet() instead. + - Comm::waitallfor() is gone too. Its semantic was unclear on timeout anyway. + - Io::waitany() and waitanyfor() are gone. Please use ActivitySet() instead. + +C API: + - Introduce sg_activity_set_t and deprecate wait_all/wait_any/test_any for + Exec, Io and Comm. + +Plugins: + - Revamp the battery plugin: rewrite completely the API, for a better usability. + The examples were updated accordingly. ---------------------------------------------------------------------------- @@ -58,10 +70,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 on hosts. + - Battery: Enable the management of batteries. See the examples under examples/cpp/battery-* 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. + - SolarPanel: Enable the management of solar panels. + See the examples under examples/cpp/solar-panel-* and the documentation in the Plugins page. Kernel: - optimize an internal data structure (use a set instead of a list for ongoing activities),