Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
99ac27773b115ebc95ec135646123facc2d404d6
[simgrid.git] / include / gras / cond.h
1 /* $Id$                     */
2
3 /* gras/cond.h - public interface to conditional execution                  */
4 /*                (specific parts for SG or RL)                             */
5  
6 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef GRAS_COND_H
12 #define GRAS_COND_H
13
14 #include "xbt/misc.h" /* BEGIN_DECL */
15
16 BEGIN_DECL()
17
18 /** @addtogroup GRAS_cond
19  *  @brief Handling code specific to the simulation or to the reality (Virtualization).
20  * 
21  *  Please note that those are real functions and not pre-processor defines. This is to ensure
22  *  that the same object code can be linked against the SG library or the RL one without recompilation.
23  * 
24  *  @{
25  */
26   
27 /** \brief Returns true only if the program runs on real life */
28 int gras_if_RL(void);
29
30 /** \brief Returns true only if the program runs within the simulator */
31 int gras_if_SG(void);
32
33 /** @} */
34
35 END_DECL()
36
37 #endif /* GRAS_COND_H */
38