Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Forgot to commit the changes for surf.
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 4 Nov 2004 06:56:23 +0000 (06:56 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 4 Nov 2004 06:56:23 +0000 (06:56 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@484 48e7efb5-ca39-0410-a469-dd3cf9ba447f

ChangeLog
include/Makefile.am
src/Makefile.am
src/xbt/dict.c

index b48cca6..24947c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
   - Rename every gras_* function that was in xbt/ to its xbt_
     counterpart.
   - Add a heap and a doubly-linked list to xbt
+  - Added a dichotomy to the dictionnaries. make check works as well before
+    so I assume that the patch is correct. I do not know however if things
+    run effectively faster than before now. :)
 
 2004-10-29 Martin Quinson
   - Introduction of the remote errors. 
index 5f7f05f..db18ac0 100644 (file)
@@ -9,6 +9,8 @@ nobase_include_HEADERS = \
        xbt/fifo.h \
        xbt/config.h \
        \
+       surf/maxmin.h \
+       \
        gras/datadesc.h gras/transport.h \
        gras/virtu.h gras/cond.h gras/process.h \
        \
index 319f380..5a3c92d 100644 (file)
@@ -21,6 +21,8 @@ EXTRA_DIST= \
         xbt/heap_private.h \
         xbt/fifo_private.h \
         \
+       surf/maxmin_private.h \
+       \
        gras/Transport/transport_interface.h \
        gras/Virtu/virtu_interface.h \
        gras/Virtu/virtu_rl.h \
@@ -88,6 +90,7 @@ COMMON_S=\
   xbt/module.c                                                                 \
   xbt/config.c                                                                 \
   \
+  surf/maxmin.c                                                                \
   \
   gras/Transport/transport.c          gras/Transport/transport_private.h   gras/Transport/transport_plugin_buf.c  \
   \
index 865934e..96a2d5e 100644 (file)
@@ -57,7 +57,7 @@ xbt_dict_free(xbt_dict_t *dict)  {
 /**
  * xbt_dict_set_ext:
  *
- * @p_dict: the container
+ * @dict: the container
  * @key: the key to set the new data
  * @data: the data to add in the dict
  *