Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
GRAS_rl does not depends on MSG anymore.
[simgrid.git] / src / gras / Virtu / rl_chrono.c
1 /*      $Id$     */
2
3 /* rl_chrono.c - code benchmarking for emulation (fake for real life)       */
4
5 /* Copyright (c) 2005 Martin Quinson, Arnaud Legrand. All rights reserved.  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "xbt/sysdep.h"
11 #include "xbt/dict.h"
12 #include "gras/chrono.h"
13 #include "msg/msg.h"
14 #include "portable.h"
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(chrono,gras,"Benchmarking used code");
17
18
19 int gras_bench_always_begin(const char *location, int line)
20 {
21   return 0;
22 }
23
24 int gras_bench_always_end(void)
25 {
26   return 0;
27 }
28
29 int gras_bench_once_begin(const char *location, int line)
30 {
31   return 0;
32 }
33
34 int gras_bench_once_end(void)
35 {
36   return 0;
37 }
38
39 void gras_chrono_init(void)
40 {
41 }