OLD | NEW |
1 /* src/config.h.in. Generated from configure.ac by autoheader. */ | 1 /* src/config.h.in. Generated from configure.ac by autoheader. */ |
2 | 2 |
3 | 3 |
4 #ifndef GOOGLE_PERFTOOLS_CONFIG_H_ | 4 #ifndef GOOGLE_PERFTOOLS_CONFIG_H_ |
5 #define GOOGLE_PERFTOOLS_CONFIG_H_ | 5 #define GOOGLE_PERFTOOLS_CONFIG_H_ |
6 | 6 |
7 | 7 |
8 /* Define to 1 if compiler supports __builtin_stack_pointer */ | 8 /* Define to 1 if compiler supports __builtin_stack_pointer */ |
9 #undef HAVE_BUILTIN_STACK_POINTER | 9 #undef HAVE_BUILTIN_STACK_POINTER |
10 | 10 |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 /* prefix where we look for installed files */ | 182 /* prefix where we look for installed files */ |
183 #undef INSTALL_PREFIX | 183 #undef INSTALL_PREFIX |
184 | 184 |
185 /* Define to 1 if int32_t is equivalent to intptr_t */ | 185 /* Define to 1 if int32_t is equivalent to intptr_t */ |
186 #undef INT32_EQUALS_INTPTR | 186 #undef INT32_EQUALS_INTPTR |
187 | 187 |
188 /* Define to the sub-directory in which libtool stores uninstalled libraries. | 188 /* Define to the sub-directory in which libtool stores uninstalled libraries. |
189 */ | 189 */ |
190 #undef LT_OBJDIR | 190 #undef LT_OBJDIR |
191 | 191 |
| 192 /* Define to 'volatile' if __malloc_hook is declared volatile */ |
| 193 #undef MALLOC_HOOK_MAYBE_VOLATILE |
| 194 |
192 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ | 195 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ |
193 #undef NO_MINUS_C_MINUS_O | 196 #undef NO_MINUS_C_MINUS_O |
194 | 197 |
195 /* Name of package */ | 198 /* Name of package */ |
196 #undef PACKAGE | 199 #undef PACKAGE |
197 | 200 |
198 /* Define to the address where bug reports for this package should be sent. */ | 201 /* Define to the address where bug reports for this package should be sent. */ |
199 #undef PACKAGE_BUGREPORT | 202 #undef PACKAGE_BUGREPORT |
200 | 203 |
201 /* Define to the full name of this package. */ | 204 /* Define to the full name of this package. */ |
(...skipping 23 matching lines...) Expand all Loading... |
225 | 228 |
226 /* printf format code for printing a size_t and ssize_t */ | 229 /* printf format code for printing a size_t and ssize_t */ |
227 #undef PRIdS | 230 #undef PRIdS |
228 | 231 |
229 /* printf format code for printing a size_t and ssize_t */ | 232 /* printf format code for printing a size_t and ssize_t */ |
230 #undef PRIuS | 233 #undef PRIuS |
231 | 234 |
232 /* printf format code for printing a size_t and ssize_t */ | 235 /* printf format code for printing a size_t and ssize_t */ |
233 #undef PRIxS | 236 #undef PRIxS |
234 | 237 |
| 238 /* Mark the systems where we know it's bad if pthreads runs too |
| 239 early before main (before threads are initialized, presumably). */ |
| 240 #ifdef __FreeBSD__ |
| 241 #define PTHREADS_CRASHES_IF_RUN_TOO_EARLY 1 |
| 242 #endif |
| 243 |
235 /* Define to necessary symbol if this constant uses a non-standard name on | 244 /* Define to necessary symbol if this constant uses a non-standard name on |
236 your system. */ | 245 your system. */ |
237 #undef PTHREAD_CREATE_JOINABLE | 246 #undef PTHREAD_CREATE_JOINABLE |
238 | 247 |
239 /* Define to 1 if you have the ANSI C header files. */ | 248 /* Define to 1 if you have the ANSI C header files. */ |
240 #undef STDC_HEADERS | 249 #undef STDC_HEADERS |
241 | 250 |
242 /* the namespace where STL code like vector<> is defined */ | 251 /* the namespace where STL code like vector<> is defined */ |
243 #undef STL_NAMESPACE | 252 #undef STL_NAMESPACE |
244 | 253 |
(...skipping 11 matching lines...) Expand all Loading... |
256 #undef inline | 265 #undef inline |
257 #endif | 266 #endif |
258 | 267 |
259 | 268 |
260 #ifdef __MINGW32__ | 269 #ifdef __MINGW32__ |
261 #include "windows/mingw.h" | 270 #include "windows/mingw.h" |
262 #endif | 271 #endif |
263 | 272 |
264 #endif /* #ifndef GOOGLE_PERFTOOLS_CONFIG_H_ */ | 273 #endif /* #ifndef GOOGLE_PERFTOOLS_CONFIG_H_ */ |
265 | 274 |
OLD | NEW |