From f4b0dd9b7a3d3d1c2002bda16c76d5c081e884db Mon Sep 17 00:00:00 2001 From: mquinson Date: Fri, 19 Jun 2009 12:26:26 +0000 Subject: [PATCH] Use parse values as double instead of casting them to int git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6326 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/msg/actions/actions.c | 23 ++++++++++++++++++----- examples/msg/actions/actions.txt | 2 +- examples/msg/actions/runme | 0 3 files changed, 19 insertions(+), 6 deletions(-) mode change 100644 => 100755 examples/msg/actions/runme diff --git a/examples/msg/actions/actions.c b/examples/msg/actions/actions.c index 7dfd787107..d04d8660b0 100644 --- a/examples/msg/actions/actions.c +++ b/examples/msg/actions/actions.c @@ -6,11 +6,24 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include +#include #include "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */ #include "xbt.h" /* calloc, printf */ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, - "Messages specific for this msg example"); + "Messages specific for this msg example"); + +/* Helper function */ +static double parse_double(const char *string) { + double value; + char *endptr; + + value=strtod(string, &endptr); + if (*endptr != '\0') + THROW1(unknown_error, 0, "%s is not a double", string); + return value; +} + /* My actions */ static void send(xbt_dynar_t action) @@ -18,8 +31,8 @@ static void send(xbt_dynar_t action) char *name = xbt_str_join(action, " "); char *to = xbt_dynar_get_as(action, 2, char *); char *size = xbt_dynar_get_as(action, 3, char *); - INFO1("Send: %s", name); - MSG_task_send(MSG_task_create(name, 0, atoi(size), NULL), to); + INFO2("Send: %s (size: %lg)", name, parse_double(size)); + MSG_task_send(MSG_task_create(name, 0, parse_double(size), NULL), to); INFO1("Sent %s", name); free(name); } @@ -42,7 +55,7 @@ static void sleep(xbt_dynar_t action) char *name = xbt_str_join(action, " "); char *duration = xbt_dynar_get_as(action, 2, char *); INFO1("sleep: %s", name); - MSG_process_sleep(atoi(duration)); + MSG_process_sleep(parse_double(duration)); INFO1("sleept: %s", name); free(name); } @@ -51,7 +64,7 @@ static void compute(xbt_dynar_t action) { char *name = xbt_str_join(action, " "); char *amout = xbt_dynar_get_as(action, 2, char *); - m_task_t task = MSG_task_create(name, atoi(amout), 0, NULL); + m_task_t task = MSG_task_create(name, parse_double(amout), 0, NULL); INFO1("computing: %s", name); MSG_task_execute(task); MSG_task_destroy(task); diff --git a/examples/msg/actions/actions.txt b/examples/msg/actions/actions.txt index 238a110528..54915b949c 100644 --- a/examples/msg/actions/actions.txt +++ b/examples/msg/actions/actions.txt @@ -1,5 +1,5 @@ # sample action file -tutu send toto 12 +tutu send toto 1e10 toto recv any tutu sleep 12 toto compute 12 diff --git a/examples/msg/actions/runme b/examples/msg/actions/runme old mode 100644 new mode 100755 -- 2.20.1