Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[jenkins] better location for the jenkins configuration files
[simgrid.git] / src / portable.h
1 /* portable -- header loading to write portable code                         */
2 /* loads much more stuff than sysdep.h since the latter is in public interface*/
3
4 /* Copyright (c) 2004-2010, 2012-2015. The SimGrid Team.
5  * 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 SIMGRID_PORTABLE_H
11 #define SIMGRID_PORTABLE_H
12
13 #include "internal_config.h"
14 #include "xbt/base.h"
15 #include "xbt/misc.h"
16 #ifdef _XBT_WIN32
17 # include <windows.h>
18 #endif
19
20 #include <stdarg.h>
21 #include <stdio.h>
22
23 #ifdef HAVE_ERRNO_H
24 #  include <errno.h>
25 #endif
26
27 #ifdef HAVE_UNISTD_H
28 #  include <unistd.h>
29 #endif
30
31 #ifdef HAVE_SYS_PARAM_H
32 # include <sys/param.h>
33 #endif
34 #ifdef HAVE_SYS_SYSCTL_H
35 # include <sys/sysctl.h>
36 #endif
37
38 /****
39  **** File handling
40  ****/
41
42 #include <fcntl.h>
43
44 #ifdef _XBT_WIN32
45   #ifndef EWOULDBLOCK
46   #define EWOULDBLOCK WSAEWOULDBLOCK
47   #endif
48
49   #ifndef EINPROGRESS
50   #define EINPROGRESS WSAEINPROGRESS
51   #endif
52
53   #ifndef ETIMEDOUT
54   #define ETIMEDOUT   WSAETIMEDOUT
55   #endif
56
57   #ifdef S_IRGRP
58     #undef S_IRGRP
59   #endif
60   #define S_IRGRP 0
61
62   #ifdef S_IWGRP
63     #undef S_IWGRP
64   #endif
65   #define S_IWGRP 0
66 #endif
67
68 #ifdef HAVE_SYS_STAT_H
69 #  include <sys/stat.h>
70 #endif
71
72 #ifndef O_BINARY
73 #  define O_BINARY 0
74 #endif
75
76 /****
77  **** Time handling
78  ****/
79
80 #ifdef TIME_WITH_SYS_TIME
81 # include <sys/time.h>
82 # include <time.h>
83 #else
84 # if HAVE_SYS_TIME_H
85 #  include <sys/time.h>
86 # else
87 #  include <time.h>
88 # endif
89 #endif
90
91 /****
92  **** Signals
93  ****/
94 #ifdef HAVE_SIGNAL_H
95 # include <signal.h>
96 #endif
97
98 /****
99  **** string handling (parts from http://www.ijs.si/software/snprintf/)
100  ****/
101
102 /* prototype of C99 functions */
103 #if defined(HAVE_SNPRINTF)
104 #include <stdio.h>
105 #else
106 XBT_PUBLIC(int) snprintf(char *, size_t, const char *, /*args */ ...);
107 XBT_PUBLIC(int) vsnprintf(char *, size_t, const char *, va_list);
108 #endif
109
110
111 /* use internal functions when OS provided ones are borken */
112 #if defined(HAVE_SNPRINTF) && defined(PREFER_PORTABLE_SNPRINTF)
113 XBT_PRIVATE int portable_snprintf(char *str, size_t str_m, const char *fmt,
114                              /*args */ ...);
115 XBT_PRIVATE int portable_vsnprintf(char *str, size_t str_m, const char *fmt,
116                               va_list ap);
117 #define snprintf  portable_snprintf
118 #define vsnprintf portable_vsnprintf
119 #endif
120
121 /* prototype of GNU functions  */
122 #if (defined(__GNUC__) && !defined(__cplusplus))
123 XBT_PUBLIC(int) asprintf(char **ptr, const char *fmt, /*args */ ...);
124 XBT_PUBLIC(int) vasprintf(char **ptr, const char *fmt, va_list ap);
125 #endif
126
127 extern int asnprintf(char **ptr, size_t str_m, const char *fmt, /*args */
128                      ...);
129 extern int vasnprintf(char **ptr, size_t str_m, const char *fmt,
130                       va_list ap);
131
132 /*
133  * What we need to extract the backtrace in exception handling code
134  */
135 #ifdef HAVE_EXECINFO_H
136 #  include <execinfo.h>
137 #endif
138
139 #endif                          /* SIMGRID_PORTABLE_H */