Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Document last changes (better SG/RL separation)
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 25 Feb 2005 10:14:10 +0000 (10:14 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 25 Feb 2005 10:14:10 +0000 (10:14 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1075 48e7efb5-ca39-0410-a469-dd3cf9ba447f

ChangeLog
examples/gras/ping/test_rl.in

index 69bd839..a3b8b89 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -25,7 +25,11 @@ Changements 
   [Martin]
   (infrastructure)
    - fix detection of older flex version and the reaction, since we do
   [Martin]
   (infrastructure)
    - fix detection of older flex version and the reaction, since we do
-     depend on modern ones (we use lex_destroy) 
+     depend on modern ones (we use lex_destroy)
+   - Better separation of SG and RL in the libs: remove all simulation code
+     from libgras. As a result, this lib is now only 200k when stripped.
+     Some of the xbt modules may also be dupplicated (two sets and such) and
+     should be cleaned/killed before SG3.
 
  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr> NOT RELEASED YET
 
 
  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr> NOT RELEASED YET
 
index 8927720..f5a2a27 100755 (executable)
@@ -1,10 +1,10 @@
 #! @BASH@ -e
 if [ x@EXEEXT@ = x ] ; then 
 #! @BASH@ -e
 if [ x@EXEEXT@ = x ] ; then 
-  wine=
+  wine="libtool --mode=execute valgrind --run-libc-freeres=no"
 else
   wine=wine
 fi
     
 else
   wine=wine
 fi
     
-$wine ./ping_server@EXEEXT@ 4000 $@ &
+$wine ./ping_server@EXEEXT@ 4002 $@ &
 sleep 1
 sleep 1
-$wine ./ping_client@EXEEXT@ 127.0.0.1 4000 $@
+$wine ./ping_client@EXEEXT@ 127.0.0.1 4002 $@