Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
aab294e0e5a6b7a7d010f66ae6aab6575080bdc6
[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" /* BEGIN_DECL */
14
15 BEGIN_DECL()
16
17 /** @addtogroup GRAS_virtu  
18  *  @brief System call abstraction layer (Virtualization).
19  *  @{
20  */
21
22 /** @brief Get the current time
23  *  @return number of second since the Epoch.
24  *  (00:00:00 UTC, January 1, 1970 in Real Life, and begining of simulation in SG)
25  */
26 double gras_os_time(void);
27
28 /** @brief sleeps for the given amount of time.
29  *  @param sec: number of seconds to sleep
30  */
31 void gras_os_sleep(double sec);
32
33 /** @brief get the fully-qualified name of the current host
34  *
35  * Returns the fully-qualified name of the host machine, or "localhost" if the name
36  * cannot be determined.  Always returns the same value, so multiple calls
37  * cause no problems.
38  */
39 const char *
40 gras_os_myname(void);
41
42 /** @brief get process identification
43  *
44  * Returns the process ID of the current process.  (This is often used
45    by routines that generate unique temporary file names.)
46  */
47 int gras_os_getpid(void);
48
49 /** @} */
50 END_DECL()
51
52 #endif /* GRAS_VIRTU_H */
53