X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2ebaf33a6383b8e8c1e7cabe73b686b291a18623..b5ce35d0a47049999d7a28185745a2a37e01d7c3:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 7e2ff0a63b..8e1ae4ded1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,12 +30,16 @@ S4U: - Activity::on_resumed_cb() is renamed to Activity::on_resume_cb(), and fired right before the resume. - Resource::on_state_change_cb() is renamed to Resource::on_onoff_cb() to distinguish from the Activity::on_state_change_cb() that is related to the activity state machine, not on/off. + - Activity signals (veto, suspend, resume, completion) are now specialized by activity class. + That is, callbacks registered in Exec::on_suspend_cb will not be fired for Comms nor Ios. New S4U plugins: - - Operation: They are designed to represent workflows, i.e, graphs of repeatable Activities. - See the examples under examples/cpp/operation-* and the documentation in the Plugins page. + - Task: They are designed to represent dataflows, i.e, graphs of repeatable Activities. + See the examples under examples/cpp/task-* and the documentation in the Plugins page. - Battery: Enable the management of batteries on hosts. 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. Kernel: - optimize an internal datastructure (use a set instead of a list for ongoing activities),