Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Need to have the HAVE_MMAP variable.
[simgrid.git] / include / simgrid_config.h.in
1 /* $Id$ */
2
3 /* simgrid_config.h - Results of the configure made visible to user code    */
4
5 /* Copyright (c) 2009, Da SimGrid team. 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 #include "xbt/misc.h"           /* XBT_PUBLIC */
11
12 #ifdef _XBT_DLL_EXPORT
13         #define DLL_EXPORT
14 #else
15         #ifdef _XBT_DLL_STATIC
16                 #define DLL_STATIC
17         #else
18                 #define DLL_IMPORT
19         #endif
20 #endif
21
22 #cmakedefine _XBT_WIN32 @_XBT_WIN32@    //this variable is set if it is a windows platform
23 #cmakedefine _WIN32 @_WIN32@                    //this variable is set if it is a 32 bits windows platform
24 #cmakedefine _WIN64 @_WIN64@                    //this variable is set if it is a 64 bits  windows platform
25 #cmakedefine __VISUALC__ @__VISUALC__@
26 #cmakedefine __BORLANDC__ @__BORLANDC__@
27
28 #ifndef SIMGRID_PUBLIC_CONFIG_H
29 #define SIMGRID_PUBLIC_CONFIG_H
30
31 /* Define to 1 if you have the `mmap' function. */
32 #cmakedefine HAVE_MMAP @HAVE_MMAP@
33
34 /* Get the config */
35 #undef SIMGRID_NEED_GETLINE
36 #undef SIMGRID_NEED_ASPRINTF
37 #undef SIMGRID_NEED_VASPRINTF
38 @need_getline@
39 @need_asprintf@
40 @need_vasprintf@
41
42 /* Use that config to declare missing elements */
43 #ifdef SIMGRID_NEED_GETLINE
44 #include <stdlib.h> /* size_t */
45 #include <stdio.h>  /* FILE*  */
46 XBT_PUBLIC(long) getline(char **lineptr, size_t * n, FILE * stream);
47 #else
48 #ifndef _GNU_SOURCE
49         #define _GNU_SOURCE
50 #endif
51 #include <stdio.h>
52 #endif
53
54
55 /* snprintf related functions */
56 /** @addtogroup XBT_str
57   * @{ */
58 /** @brief print to allocated string (reimplemented when not provided by the system)
59  *
60  * The functions asprintf() and vasprintf() are analogues of
61  * sprintf() and vsprintf(), except that they allocate a string large
62  * enough to hold the output including the terminating null byte, and
63  * return a pointer to it via the first parameter.  This pointer
64  * should be passed to free(3) to release the allocated storage when
65  * it is no longer needed.
66  */
67 #if defined(SIMGRID_NEED_ASPRINTF)||defined(DOXYGEN)
68 XBT_PUBLIC(int) asprintf(char **ptr, const char *fmt,   /*args */
69                          ...) _XBT_GNUC_PRINTF(2, 3);
70 #endif
71 /** @brief print to allocated string (reimplemented when not provided by the system)
72  *
73  * See asprintf()
74  */
75 #if defined(SIMGRID_NEED_VASPRINTF)||defined(DOXYGEN)
76 #include <stdarg.h>
77 XBT_PUBLIC(int) vasprintf(char **ptr, const char *fmt, va_list ap);
78 #endif
79 /** @brief print to allocated string
80  *
81  * Works just like asprintf(), but returns a pointer to the newly created string
82  */
83 XBT_PUBLIC(char *) bprintf(const char *fmt, ...) _XBT_GNUC_PRINTF(1, 2);
84 /** @} */
85
86 #endif /* SIMGRID_PUBLIC_CONFIG_H */