From: mquinson Date: Tue, 10 Jun 2008 10:04:51 +0000 (+0000) Subject: Oups, I changed the prototype of these functions X-Git-Tag: v3.3~385 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/365737b0c6d06b7d405041e092eb3bd6b67c4559?ds=inline Oups, I changed the prototype of these functions git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5591 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/examples/amok/bandwidth/bandwidth.c b/examples/amok/bandwidth/bandwidth.c index 54c426c688..5f1b7205bc 100644 --- a/examples/amok/bandwidth/bandwidth.c +++ b/examples/amok/bandwidth/bandwidth.c @@ -47,7 +47,7 @@ int sensor (int argc,char *argv[]) { } } - amok_pm_group_join(master,"bandwidth"); + amok_pm_group_join(master,"bandwidth",-1); amok_pm_mainloop(60); gras_socket_close(mysock); diff --git a/examples/amok/saturate/saturate.c b/examples/amok/saturate/saturate.c index 4f3a802be7..6734088cf9 100644 --- a/examples/amok/saturate/saturate.c +++ b/examples/amok/saturate/saturate.c @@ -39,7 +39,7 @@ int sensor (int argc,char *argv[]) { gras_os_sleep(2); /* let the master get ready */ master = gras_socket_client_from_string(argv[1]); - amok_pm_group_join(master,"saturate"); + amok_pm_group_join(master,"saturate",-1); amok_pm_mainloop(600); gras_socket_close(mysock);