X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/912a9ae1e7d165713255d17b216500188057ecea..96f99f2c43f129472ec7603caef3e370be91e13e:/include/gras/virtu.h diff --git a/include/gras/virtu.h b/include/gras/virtu.h index 6b3b7f6b24..58ea323479 100644 --- a/include/gras/virtu.h +++ b/include/gras/virtu.h @@ -10,12 +10,14 @@ #ifndef GRAS_VIRTU_H #define GRAS_VIRTU_H -#include "xbt/misc.h" /* BEGIN_DECL */ +#include "xbt/misc.h" /* SG_BEGIN_DECL */ -BEGIN_DECL() +SG_BEGIN_DECL() /** @addtogroup GRAS_virtu - * @brief System call abstraction layer (Virtualization). + * @brief System call abstraction layer. + * + * * @{ */ @@ -39,15 +41,18 @@ void gras_os_sleep(double sec); const char * gras_os_myname(void); +/** @brief returns the number on which this process is listening for incoming messages */ +int gras_os_myport(void); + /** @brief get process identification * * Returns the process ID of the current process. (This is often used by routines that generate unique temporary file names.) */ -int gras_process_getpid(void); +long int gras_os_getpid(void); /** @} */ -END_DECL() +SG_END_DECL() #endif /* GRAS_VIRTU_H */