Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
same thing, forgot some
[simgrid.git] / examples / simdag / io / sd_io.c
1 /* Copyright (c) 2013. 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 <stdio.h>
8 #include <stdlib.h>
9 #include "simdag/simdag.h"
10 #include "xbt/ex.h"
11 #include "xbt/log.h"
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(sd_io,
14                              "Logging specific to this SimDag example");
15 int main(int argc, char **argv)
16 {
17   unsigned int ctr, ctr2;
18   const SD_workstation_t *workstations;
19   int total_nworkstations;
20   xbt_dynar_t current_storage_list;
21   char *mount_name;
22
23   SD_init(&argc, argv);
24   /* Set the workstation model to default, as storage is not supported by the
25    * ptask_L07 model yet.
26    */
27   SD_config("workstation/model", "default");
28   SD_create_environment(argv[1]);
29   workstations = SD_workstation_get_list();
30   total_nworkstations = SD_workstation_get_number();
31
32   for (ctr=0; ctr<total_nworkstations;ctr++){
33     current_storage_list = SD_workstation_get_storage_list(workstations[ctr]);
34     xbt_dynar_foreach(current_storage_list, ctr2, mount_name)
35       XBT_INFO("Workstation '%s' mounts '%s'",
36          SD_workstation_get_name(workstations[ctr]), mount_name);
37     xbt_dynar_free_container(&current_storage_list);
38   }
39   SD_exit();
40   return 0;
41 }