Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Continue documenting my changes
[simgrid.git] / include / gras / virtu.h
1 /* $Id$                    */
2
3 /* gras/virtu.h - public interface to virtualization (cross-OS portability) */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef GRAS_VIRTU_H
11 #define GRAS_VIRTU_H
12
13 #include "xbt/misc.h" /* SG_BEGIN_DECL */
14
15 SG_BEGIN_DECL()
16
17 /** @addtogroup GRAS_virtu  
18  *  @brief System call abstraction layer.
19  *
20  *
21  *  @{
22  */
23
24 /** @brief Get the current time
25  *  @return number of second since the Epoch.
26  *  (00:00:00 UTC, January 1, 1970 in Real Life, and begining of simulation in SG)
27  */
28 XBT_PUBLIC(double) gras_os_time(void);
29
30 /** @brief sleeps for the given amount of time.
31  *  @param sec: number of seconds to sleep
32  */
33 XBT_PUBLIC(void) gras_os_sleep(double sec);
34
35 /** @brief get the fully-qualified name of the current host
36  *
37  * Returns the fully-qualified name of the host machine, or "localhost" if the name
38  * cannot be determined.  Always returns the same value, so multiple calls
39  * cause no problems.
40  */
41 XBT_PUBLIC(const char *)
42 gras_os_myname(void);
43
44 /** @brief returns the number on which this process is listening for incoming messages */
45 XBT_PUBLIC(int) gras_os_myport(void);
46
47 /** @brief get process identification
48  *
49  * Returns the process ID of the current process.  (This is often used
50    by routines that generate unique temporary file names.)
51  */
52 XBT_PUBLIC(int) gras_os_getpid(void);
53
54 /** @} */
55 SG_END_DECL()
56
57 #endif /* GRAS_VIRTU_H */
58