X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..7cf68ae88d84d10a4afde2c9a564856fecda7666:/teshsuite/msg/host_on_off_processes/host_on_off_processes.c diff --git a/teshsuite/msg/host_on_off_processes/host_on_off_processes.c b/teshsuite/msg/host_on_off_processes/host_on_off_processes.c index 79bf033f69..754264b097 100644 --- a/teshsuite/msg/host_on_off_processes/host_on_off_processes.c +++ b/teshsuite/msg/host_on_off_processes/host_on_off_processes.c @@ -1,10 +1,9 @@ -/* Copyright (c) 2010-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "simgrid/msg.h" /* Yeah! If you want to use msg, you need to include simgrid/msg.h */ +#include "simgrid/msg.h" XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example"); @@ -37,10 +36,9 @@ static int process_sleep(int argc, char *argv[]) static int commTX(int argc, char *argv[]) { - msg_task_t task = NULL; const char * mailbox = "comm"; XBT_INFO(" Start TX"); - task = MSG_task_create("COMM", 0, 100000000, NULL); + msg_task_t task = MSG_task_create("COMM", 0, 100000000, NULL); MSG_task_isend(task, mailbox); // We should wait a bit (if not the process will end before the communication, hence an exception on the other side). MSG_process_sleep(30); @@ -176,7 +174,7 @@ static int test_launcher(int argc, char *argv[]) msg_vm_t vm0; msg_process_t daemon; - vm0 = MSG_vm_create (jupiter, "vm0", 1, 2048, 125, NULL, -1, 125, dpRate); + vm0 = MSG_vm_create(jupiter, "vm0", 1, 2048, 125, dpRate); MSG_vm_start(vm0); argvF = xbt_new(char*, 2);