Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
proper xbt_log_init function
[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) 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 /**
19  * gras_if_RL:
20  * 
21  * Returns true only if the program runs on real life
22  */
23 int gras_if_RL(void);
24
25 /**
26  * gras_if_SG:
27  * 
28  * Returns true only if the program runs within the simulator
29  */
30 int gras_if_SG(void);
31
32 END_DECL
33
34 #endif /* GRAS_COND_H */
35