Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
documentation about triva - installation, execution and time-slice description
[simgrid.git] / ChangeLog
index 02d3219..3a10c54 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -45,12 +45,20 @@ SimGrid (3.3.5-svn) unstable; urgency=low
     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 <simgrid-devel@lists.gforge.inria.fr>