Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some MC tests still believe that platform.xml exist
[simgrid.git] / examples / msg / process-startkilltime / process-startkilltime.c
1 /* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/msg.h"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
9
10 /* Executed on process termination*/
11 static int my_onexit(void* ignored1, void *ignored2) {
12   XBT_INFO("Exiting now (done sleeping or got killed)."); /* - Just display an informative message (see tesh file) */
13   return 0;
14 }
15
16 /* Just sleep until termination */
17 static int sleeper(int argc, char *argv[])
18 {
19   XBT_INFO("Hello! I go to sleep.");
20   MSG_process_on_exit(my_onexit, NULL);
21
22   MSG_process_sleep(xbt_str_parse_int(argv[1], "sleeper process expects an integer parameter but got %s"));
23   XBT_INFO("Done sleeping.");
24   return 0;
25 }
26
27 int main(int argc, char *argv[])
28 {
29   msg_error_t res = MSG_OK;
30
31   MSG_init(&argc, argv);
32   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
33              "\tExample: %s msg_platform.xml msg_deployment.xml\n", argv[0], argv[0]);
34
35   MSG_create_environment(argv[1]);   /* - Load the platform description */
36   MSG_function_register("sleeper", sleeper);
37   MSG_launch_application(argv[2]);   /* - Deploy the sleeper processes with explicit start/kill times */
38
39   res = MSG_main();                  /* - Run the simulation */
40   XBT_INFO("Simulation time %g", MSG_get_clock());
41   return res != MSG_OK;
42 }