Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c9c0bb9b0b9b9fb5e24b27cf7cd4aa0ca4ee46db
[simgrid.git] / src / instr / instr_smx.c
1 /* Copyright (c) 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 "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_simix, instr, "Tracing Simix");
12
13 void TRACE_smx_host_execute(smx_action_t act)
14 {
15   if (!TRACE_is_active()) return;
16   return;
17 }
18
19 void TRACE_smx_action_communicate(smx_action_t act, smx_process_t proc)
20 {
21   if (!TRACE_is_active()) return;
22   return;
23 }
24
25 void TRACE_smx_action_destroy(smx_action_t act)
26 {
27   if (!TRACE_is_active()) return;
28   return;
29 }
30
31 #endif /* HAVE_TRACING */