X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4ed8be9e9f7601bd85bbea22ee0cf80ed2266c41..fb9b4711ee0213301381ef0b7c0a7a446ae9a9e7:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 7b63594643..3a10c54a44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,12 +34,31 @@ SimGrid (3.3.5-svn) unstable; urgency=low * Add a MSG_task_set_data() function SIMIX: * add a SIMIX_sem_get_capacity() function + SURF: + * Rename configuration variables to start a hierarchy: + o cpu_model -> cpu/model + o network_model -> network/model + o workstation_model -> workstation/model + * New configuration variables: + o network/bandwidth_factor: correction to bandwith + o network/latency_factor: correction to latency + o netwotk/weight_S: correction to the weight of competing streams + * Add a long description to the models, that users can see with such + argument on the command line: --cfg=cpu/model:help + * --help-models display the long description of all known models SMPI: * Implement MPI_Get_count, MPI_MAXLOC, MPI_MINLOC XBT: * config: add the ability to set a default value after registration Does not override any previously set value (e.g. from cmd line) - + * dict: allow to have integer key and data. + When so, you need to use the following functions + void xbt_dicti_set(xbt_dict_t dict, uintptr_t key, uintptr_t data); + uintptr_t xbt_dicti_get(xbt_dict_t dict, uintptr_t key); + void xbt_dicti_remove(xbt_dict_t dict, uintptr_t key); + In contrary to regular dicts, the key is not malloced before copy. + Mixing scalar and regular elements in the same dict is not tested + (but may work). -- Da SimGrid team