Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Energy, onHostDestruction: ensured ptr existence
[simgrid.git] / examples / msg / start_kill_time / sk_time.c
1 /* Copyright (c) 2007, 2009-2010, 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/msg.h"        /* Yeah! If you want to use msg, you need to include simgrid/msg.h */
8 #include "xbt/sysdep.h"         /* calloc */
9
10 /* Create a log channel to have nice outputs. */
11 #include "xbt/log.h"
12 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
13                              "Messages specific for this msg example");
14
15 static int my_onexit(void* ignored1, void *ignored2) {
16   XBT_INFO("Exiting now (done sleeping or got killed).");
17   return 0;
18 }
19
20 static int sleeper(int argc, char *argv[])
21 {
22   XBT_INFO("Hello! I go to sleep.");
23   MSG_process_on_exit(my_onexit, NULL);
24    
25   MSG_process_sleep(xbt_str_parse_int(argv[1], "sleeper process expects an integer parameter but got %s"));
26   XBT_INFO("Done sleeping.");
27   return 0;
28 }
29
30 /** Test function */
31 static msg_error_t test_all(const char *platform_file,
32                             const char *application_file)
33 {
34   msg_error_t res = MSG_OK;
35
36   MSG_create_environment(platform_file);
37   MSG_function_register("sleeper", sleeper);
38   MSG_launch_application(application_file);
39
40   res = MSG_main();
41
42   XBT_INFO("Simulation time %g", MSG_get_clock());
43   return res;
44 }                               /* end_of_test_all */
45
46
47 /** Main function */
48 int main(int argc, char *argv[])
49 {
50   msg_error_t res = MSG_OK;
51
52   MSG_init(&argc, argv);
53    xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
54            "\tExample: %s msg_platform.xml msg_deployment.xml\n", 
55            argv[0], argv[0]);
56   
57   test_all(argv[1], argv[2]);
58
59   return res != MSG_OK;
60 }