From 3e2d38c807f62cd66fe31885811a975cb38de7cb Mon Sep 17 00:00:00 2001 From: cristianrosa Date: Wed, 26 Jan 2011 13:53:42 +0000 Subject: [PATCH] Reduce the run size for the MC git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9498 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/msg/chord/chord.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/msg/chord/chord.c b/examples/msg/chord/chord.c index 08698f605d..8f7b2f543a 100644 --- a/examples/msg/chord/chord.c +++ b/examples/msg/chord/chord.c @@ -250,6 +250,13 @@ static void set_predecessor(node_t node, int predecessor_id) */ int node(int argc, char *argv[]) { + /* Reduce the run size for the MC */ + if(MC_IS_ENABLED){ + periodic_stabilize_delay = 8; + periodic_fix_fingers_delay = 8; + periodic_check_predecessor_delay = 8; + } + double init_time = MSG_get_clock(); m_task_t task_received = NULL; msg_comm_t comm_send = NULL; -- 2.20.1