OLD | NEW |
1 /* src/config.h. Generated from config.h.in by configure. */ | 1 /* src/config.h. Generated from config.h.in by configure. */ |
2 /* src/config.h.in. Generated from configure.ac by autoheader. */ | 2 /* src/config.h.in. Generated from configure.ac by autoheader. */ |
3 | 3 |
4 /* Define to 1 if compiler supports __builtin_stack_pointer */ | 4 /* Define to 1 if compiler supports __builtin_stack_pointer */ |
5 /* #undef HAVE_BUILTIN_STACK_POINTER */ | 5 /* #undef HAVE_BUILTIN_STACK_POINTER */ |
6 | 6 |
7 /* Define to 1 if you have the <conflict-signal.h> header file. */ | 7 /* Define to 1 if you have the <conflict-signal.h> header file. */ |
8 /* #undef HAVE_CONFLICT_SIGNAL_H */ | 8 /* #undef HAVE_CONFLICT_SIGNAL_H */ |
9 | 9 |
10 /* Define to 1 if you have the <cygwin/signal.h> header file. */ | 10 /* Define to 1 if you have the <cygwin/signal.h> header file. */ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 183 |
184 /* Define to 1 if int32_t is equivalent to intptr_t */ | 184 /* Define to 1 if int32_t is equivalent to intptr_t */ |
185 #if defined(__i386__) | 185 #if defined(__i386__) |
186 #define INT32_EQUALS_INTPTR 1 | 186 #define INT32_EQUALS_INTPTR 1 |
187 #endif | 187 #endif |
188 | 188 |
189 /* Define to the sub-directory in which libtool stores uninstalled libraries. | 189 /* Define to the sub-directory in which libtool stores uninstalled libraries. |
190 */ | 190 */ |
191 #undef LT_OBJDIR | 191 #undef LT_OBJDIR |
192 | 192 |
| 193 /* Define to 'volatile' if __malloc_hook is declared volatile */ |
| 194 #ifdef __MALLOC_HOOK_VOLATILE |
| 195 #define MALLOC_HOOK_MAYBE_VOLATILE volatile |
| 196 #else |
| 197 #define MALLOC_HOOK_MAYBE_VOLATILE |
| 198 #endif |
| 199 |
193 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ | 200 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ |
194 /* #undef NO_MINUS_C_MINUS_O */ | 201 /* #undef NO_MINUS_C_MINUS_O */ |
195 | 202 |
196 /* Name of package */ | 203 /* Name of package */ |
197 #define PACKAGE "google-perftools" | 204 #define PACKAGE "google-perftools" |
198 | 205 |
199 /* Define to the address where bug reports for this package should be sent. */ | 206 /* Define to the address where bug reports for this package should be sent. */ |
200 #define PACKAGE_BUGREPORT "opensource@google.com" | 207 #define PACKAGE_BUGREPORT "opensource@google.com" |
201 | 208 |
202 /* Define to the full name of this package. */ | 209 /* Define to the full name of this package. */ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 /* printf format code for printing a size_t and ssize_t */ | 248 /* printf format code for printing a size_t and ssize_t */ |
242 #define PRIdS "ld" | 249 #define PRIdS "ld" |
243 | 250 |
244 /* printf format code for printing a size_t and ssize_t */ | 251 /* printf format code for printing a size_t and ssize_t */ |
245 #define PRIuS "lu" | 252 #define PRIuS "lu" |
246 | 253 |
247 /* printf format code for printing a size_t and ssize_t */ | 254 /* printf format code for printing a size_t and ssize_t */ |
248 #define PRIxS "lx" | 255 #define PRIxS "lx" |
249 #endif | 256 #endif |
250 | 257 |
| 258 /* Mark the systems where we know it's bad if pthreads runs too |
| 259 early before main (before threads are initialized, presumably). */ |
| 260 #define PTHREADS_CRASHES_IF_RUN_TOO_EARLY 1 |
| 261 |
251 /* Define to necessary symbol if this constant uses a non-standard name on | 262 /* Define to necessary symbol if this constant uses a non-standard name on |
252 your system. */ | 263 your system. */ |
253 /* #undef PTHREAD_CREATE_JOINABLE */ | 264 /* #undef PTHREAD_CREATE_JOINABLE */ |
254 | 265 |
255 /* Define to 1 if you have the ANSI C header files. */ | 266 /* Define to 1 if you have the ANSI C header files. */ |
256 #define STDC_HEADERS 1 | 267 #define STDC_HEADERS 1 |
257 | 268 |
258 /* the namespace where STL code like vector<> is defined */ | 269 /* the namespace where STL code like vector<> is defined */ |
259 #define STL_NAMESPACE std | 270 #define STL_NAMESPACE std |
260 | 271 |
261 /* Version number of package */ | 272 /* Version number of package */ |
262 #define VERSION "1.7" | 273 #define VERSION "1.7" |
263 | 274 |
264 /* C99 says: define this to get the PRI... macros from stdint.h */ | 275 /* C99 says: define this to get the PRI... macros from stdint.h */ |
265 #ifndef __STDC_FORMAT_MACROS | 276 #ifndef __STDC_FORMAT_MACROS |
266 # define __STDC_FORMAT_MACROS 1 | 277 # define __STDC_FORMAT_MACROS 1 |
267 #endif | 278 #endif |
268 | 279 |
269 /* Define to `__inline__' or `__inline' if that's what the C compiler | 280 /* Define to `__inline__' or `__inline' if that's what the C compiler |
270 calls it, or to nothing if 'inline' is not supported under any name. */ | 281 calls it, or to nothing if 'inline' is not supported under any name. */ |
271 #ifndef __cplusplus | 282 #ifndef __cplusplus |
272 /* #undef inline */ | 283 /* #undef inline */ |
273 #endif | 284 #endif |
274 | 285 |
275 | 286 |
276 #ifdef __MINGW32__ | 287 #ifdef __MINGW32__ |
277 #include "windows/mingw.h" | 288 #include "windows/mingw.h" |
278 #endif | 289 #endif |
OLD | NEW |