Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
By default, the output of floating point numbers by functions such as printf, wprintf...
[simgrid.git] / examples / msg / priority / priority.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved.        */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <stdio.h>
9 #include "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */
10 #include "xbt/sysdep.h" /* calloc, printf */
11
12 /* Create a log channel to have nice outputs. */
13 #include "xbt/log.h"
14 #include "xbt/asserts.h"
15 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,"Messages specific for this msg example");
16
17 static int test(int argc, char *argv[])
18 {
19   double computation_amount = 0.0;
20   double priority = 1.0;
21   m_task_t task = NULL;
22
23
24   xbt_assert1(sscanf(argv[1],"%lg", &computation_amount),
25          "Invalid argument %s\n",argv[1]);
26   xbt_assert1(sscanf(argv[2],"%lg", &priority),
27          "Invalid argument %s\n",argv[2]);
28
29   INFO2("Hello! Running a task of size %g with priority %g",
30         computation_amount, priority);
31   task = MSG_task_create("Task", computation_amount, 0.0,NULL);
32   MSG_task_set_priority(task, priority);
33
34   MSG_task_execute(task);
35
36   
37   INFO0("Goodbye now!");
38   return 0;
39
40
41 static MSG_error_t test_all(const char *platform_file,
42                             const char *application_file)
43 {
44   MSG_error_t res = MSG_OK;
45
46   {                             /*  Simulation setting */
47     MSG_set_channel_number(1);
48     MSG_paje_output("msg_test.trace");
49     MSG_create_environment(platform_file);
50   }
51   {                            /*   Application deployment */
52     MSG_function_register("test", test);
53     MSG_launch_application(application_file);
54   }
55   res = MSG_main();
56   
57   INFO1("Simulation time %g",MSG_get_clock());
58   return res;
59 }
60
61 int main(int argc, char *argv[])
62 {
63   MSG_error_t res = MSG_OK;
64   
65   #ifdef _MSC_VER
66   unsigned int prev_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT);
67   #endif
68
69
70   MSG_global_init(&argc,argv);
71   if (argc < 3) {
72      printf ("Usage: %s platform_file deployment_file\n",argv[0]);
73      printf ("example: %s msg_platform.xml msg_deployment.xml\n",argv[0]);
74      exit(1);
75   }
76   res = test_all(argv[1],argv[2]);
77   MSG_clean();
78   
79   #ifdef _MSC_VER
80   _set_output_format(prev_exponent_format);
81   #endif
82
83   if(res==MSG_OK)
84     return 0;
85   else
86     return 1;
87 }