Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
On windows, try_compile may use another compiler than the one we want.
[simgrid.git] / src / simdag / instr_sd_task.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 "instr/instr_private.h"
8 #include "private.h"
9 #include "simdag/datatypes.h"
10
11 #ifdef HAVE_TRACING
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_sd, instr, "SD");
14
15 void TRACE_sd_set_task_category(SD_task_t task, const char *category){
16
17   //if user provides a NULL category, task is no longer traced
18   if (category == NULL) {
19     xbt_free (task->category);
20     task->category = NULL;
21     XBT_DEBUG("SD task %p(%s), category removed", task, task->name);
22     return;
23   }
24
25   //set task category
26   xbt_free(task->category);
27   task->category = xbt_strdup (category);
28   XBT_DEBUG("SD task %p(%s), category %s", task, task->name, task->category);
29 }
30
31 void TRACE_sd_task_create(SD_task_t task)
32 {
33   static long long counter = 0;
34   task->counter = counter++;
35   task->category = NULL;
36
37   XBT_DEBUG("CREATE %p, %lld", task, task->counter);
38 }
39
40 void TRACE_sd_task_execute_start(SD_task_t task)
41 {
42   if (task->kind == SD_TASK_COMP_PAR_AMDAHL || task->kind == SD_TASK_COMP_SEQ){
43     XBT_DEBUG("EXEC,in %p, %lld, %s", task, task->counter, task->category);
44 //    int i;
45 //    for (i = 0; i < task->workstation_nb; i++){
46 //      container_t workstation_container =
47 //          PJ_container_get (SD_workstation_get_name(task->workstation_list[i]));
48 //      char name[1024];
49 //      type_t type = PJ_type_get ("power_used", workstation_container->type);
50 //      sprintf(name, "%s_ws_%d", SD_task_get_name(task), i);
51 //      val_t value = PJ_value_new(name, "1 0 1", type);
52 //      new_pajePushState (SD_get_clock(), workstation_container, type, value);
53 //    }
54   }
55 }
56
57 void TRACE_sd_task_execute_end(SD_task_t task)
58 {
59   if (task->kind == SD_TASK_COMP_PAR_AMDAHL || task->kind == SD_TASK_COMP_SEQ){
60     XBT_DEBUG("EXEC,out %p, %lld, %s", task, task->counter, task->category);
61 //    int i;
62 //    for (i = 0; i < task->workstation_nb; i++){
63 //      container_t workstation_container =
64 //          PJ_container_get (SD_workstation_get_name(task->workstation_list[i]));
65 //      type_t type = PJ_type_get ("power_used", workstation_container->type);
66 //      new_pajePopState (SD_get_clock(), workstation_container, type);
67 //    }
68   }
69 }
70
71 void TRACE_sd_task_destroy(SD_task_t task)
72 {
73   XBT_DEBUG("DESTROY %p, %lld, %s", task, task->counter, task->category);
74
75   //free category
76   xbt_free(task->category);
77   task->category = NULL;
78   return;
79 }
80
81 #endif /* HAVE_TRACING */