From d13e000f56cfa4abba1c733cdc695a422b8ea39e Mon Sep 17 00:00:00 2001 From: alegrand Date: Thu, 4 Nov 2004 06:56:23 +0000 Subject: [PATCH] Forgot to commit the changes for surf. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@484 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- ChangeLog | 3 +++ include/Makefile.am | 2 ++ src/Makefile.am | 3 +++ src/xbt/dict.c | 2 +- 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b48cca63f9..24947c0532 100644 --- 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. diff --git a/include/Makefile.am b/include/Makefile.am index 5f7f05fa4e..db18ac0d23 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -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 \ \ diff --git a/src/Makefile.am b/src/Makefile.am index 319f38000b..5a3c92d420 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 \ \ diff --git a/src/xbt/dict.c b/src/xbt/dict.c index 865934e3e0..96a2d5e5c0 100644 --- a/src/xbt/dict.c +++ b/src/xbt/dict.c @@ -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 * -- 2.20.1