X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bfbe7002a7ff4147e838e6d88841ed8e87683683..409cad633c6b5032649e7a54f6311e41c6178899:/include/gras/cond.h diff --git a/include/gras/cond.h b/include/gras/cond.h index 42ca8dbd5b..99ac27773b 100644 --- a/include/gras/cond.h +++ b/include/gras/cond.h @@ -3,34 +3,36 @@ /* gras/cond.h - public interface to conditional execution */ /* (specific parts for SG or RL) */ -/* Authors: Martin Quinson */ -/* Copyright (C) 2003,2004 da GRAS posse. */ +/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef GRAS_COND_H #define GRAS_COND_H #include "xbt/misc.h" /* BEGIN_DECL */ -BEGIN_DECL +BEGIN_DECL() -/** - * gras_if_RL: +/** @addtogroup GRAS_cond + * @brief Handling code specific to the simulation or to the reality (Virtualization). * - * Returns true only if the program runs on real life + * Please note that those are real functions and not pre-processor defines. This is to ensure + * that the same object code can be linked against the SG library or the RL one without recompilation. + * + * @{ */ + +/** \brief Returns true only if the program runs on real life */ int gras_if_RL(void); -/** - * gras_if_SG: - * - * Returns true only if the program runs within the simulator - */ +/** \brief Returns true only if the program runs within the simulator */ int gras_if_SG(void); -END_DECL +/** @} */ + +END_DECL() #endif /* GRAS_COND_H */