X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4ab3513687a36569218810261a173e189a9af5a5..40334ce6fe520b2fa7d1e240716e4f34a5fdc74e:/teshsuite/msg/task_destroy_cancel/task_destroy_cancel.c diff --git a/teshsuite/msg/task_destroy_cancel/task_destroy_cancel.c b/teshsuite/msg/task_destroy_cancel/task_destroy_cancel.c index 6dda8b5a96..0ba661d7b1 100644 --- a/teshsuite/msg/task_destroy_cancel/task_destroy_cancel.c +++ b/teshsuite/msg/task_destroy_cancel/task_destroy_cancel.c @@ -5,7 +5,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include -#include "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */ +#include "simgrid/msg.h" /* Yeah! If you want to use msg, you need to include simgrid/msg.h */ #include "xbt/sysdep.h" /* calloc, printf */ /* Create a log channel to have nice outputs. */ @@ -114,6 +114,7 @@ int slave(int argc, char *argv[]) if (!strcmp(MSG_task_get_name(task), "cancel")) { MSG_process_create("worker1", worker_main, task, MSG_host_self()); + MSG_process_sleep(0.1); XBT_INFO("Canceling task \"%s\"", task->name); MSG_task_cancel(task); continue; @@ -125,7 +126,7 @@ int slave(int argc, char *argv[]) XBT_INFO("Task \"%s\" done in %f (amount %f)" , MSG_task_get_name(task) , end - start - , MSG_task_get_remaining_computation(task)); + , MSG_task_get_flops_amount(task)); MSG_task_destroy(task); task = NULL;