X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/97ba095764fbd852783e6a6dfe40da2fdd3f1f25..337c0de59186a44f7a146bc28628ee10f6e5f9ed:/include/gras/virtu.h diff --git a/include/gras/virtu.h b/include/gras/virtu.h index e8c5faea4e..65d3a81a22 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. + * + * * @{ */ @@ -32,15 +34,22 @@ void gras_os_sleep(double sec); /** @brief get the fully-qualified name of the current host * - * Returns the fully-qualified name of the host machine, or NULL if the name + * Returns the fully-qualified name of the host machine, or "localhost" if the name * cannot be determined. Always returns the same value, so multiple calls * cause no problems. */ const char * -gras_get_my_fqdn(void); +gras_os_myname(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.) + */ +long int gras_os_getpid(void); /** @} */ -END_DECL() +SG_END_DECL() #endif /* GRAS_VIRTU_H */