Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add example to kill a process.
[simgrid.git] / examples / msg / masterslave / masterslave_kill.c
1 /* Copyright (c) 2007, 2009, 2010. 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 "msg/msg.h"            /* Yeah! If you want to use msg, you need to include msg/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 /** Lazy guy function. This process suspends itself asap.  */
16 static int slave(int argc, char *argv[])
17 {
18   XBT_INFO("Hello!");
19   XBT_INFO("Suspend process");
20   MSG_process_suspend(MSG_process_self());
21   MSG_task_execute(MSG_task_create("toto",10000000000000000,0,NULL));
22   XBT_INFO("Bye!");
23   return 0;
24 }                               /* end_of_lazy_guy */
25
26 static int master(int argc, char *argv[])
27 {
28   m_process_t bob = NULL;
29
30   XBT_INFO("Hello!");
31   bob = MSG_process_create("slave", slave, NULL, MSG_get_host_by_name("bob"));
32   MSG_process_sleep(10.0);
33
34   XBT_INFO("Resume process");
35   MSG_process_resume(bob);
36
37   XBT_INFO("Kill process");
38   MSG_process_kill(bob);
39
40   XBT_INFO("OK, goodbye now.");
41   return 0;
42 }                               /* end_of_dram_master */
43
44 /** Test function */
45 static MSG_error_t test_all(const char *platform_file,
46                             const char *application_file)
47 {
48   MSG_error_t res = MSG_OK;
49
50   MSG_create_environment(platform_file);
51   MSG_function_register("master", master);
52   MSG_function_register("slave", slave);
53   MSG_launch_application(application_file);
54
55   res = MSG_main();
56
57   XBT_INFO("Simulation time %g", MSG_get_clock());
58   return res;
59 }                               /* end_of_test_all */
60
61
62 /** Main function */
63 int main(int argc, char *argv[])
64 {
65   MSG_error_t res = MSG_OK;
66
67   MSG_global_init(&argc, argv);
68   if (argc < 3) {
69     XBT_CRITICAL("Usage: %s platform_file deployment_file\n", argv[0]);
70     XBT_CRITICAL("example: %s msg_platform.xml msg_deployment_suspend.xml\n",
71               argv[0]);
72     exit(1);
73   }
74   test_all(argv[1], argv[2]);
75   res = MSG_clean();
76
77   if (res == MSG_OK)
78     return 0;
79   else
80     return 1;
81 }                               /* end_of_main */