Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix log message with respect to our recent unit modifications.
[simgrid.git] / include / gras / virtu.h
index 1314148..58ea323 100644 (file)
 SG_BEGIN_DECL()
 
 /** @addtogroup GRAS_virtu  
- *  @brief System call abstraction layer (Virtualization).
+ *  @brief System call abstraction layer.
  *
- * <center><table><tr><td><b>Top</b>    <td> [\ref index]::[\ref GRAS_API]
- *                <tr><td><b>Prev</b>   <td> [\ref GRAS_timer]
- *                <tr><td><b>Next</b>   <td> [\ref GRAS_globals]            </table></center>
  *
  *  @{
  */
@@ -44,12 +41,15 @@ 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_os_getpid(void);
+long int gras_os_getpid(void);
 
 /** @} */
 SG_END_DECL()