Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doxygenification
[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  *  @param usec: number of microseconds to sleep
31  */
32 void gras_os_sleep(unsigned long sec, unsigned long usec);
33
34 /** @brief get the fully-qualified name of the current host
35  *
36  * Returns the fully-qualified name of the host machine, or NULL if the name
37  * cannot be determined.  Always returns the same value, so multiple calls
38  * cause no problems.
39  */
40 const char *
41 gras_get_my_fqdn(void);
42
43 /** @} */
44 END_DECL()
45
46 #endif /* GRAS_VIRTU_H */
47