OLD | NEW |
1 /* A manual version of config.h fit for windows machines. */ | 1 /* A manual version of config.h fit for windows machines. */ |
2 | 2 |
3 /* Sometimes we accidentally #include this config.h instead of the one | 3 /* Sometimes we accidentally #include this config.h instead of the one |
4 in .. -- this is particularly true for msys/mingw, which uses the | 4 in .. -- this is particularly true for msys/mingw, which uses the |
5 unix config.h but also runs code in the windows directory. | 5 unix config.h but also runs code in the windows directory. |
6 */ | 6 */ |
7 #ifdef __MINGW32__ | 7 #ifdef __MINGW32__ |
8 #include "../config.h" | 8 #include "../config.h" |
9 #define GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ | 9 #define GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ |
10 #endif | 10 #endif |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 #undef HAVE_DECL_UNAME | 58 #undef HAVE_DECL_UNAME |
59 | 59 |
60 /* Define to 1 if you have the declaration of `valloc', and to 0 if you don't. | 60 /* Define to 1 if you have the declaration of `valloc', and to 0 if you don't. |
61 */ | 61 */ |
62 #undef HAVE_DECL_VALLOC | 62 #undef HAVE_DECL_VALLOC |
63 | 63 |
64 /* Define to 1 if you prefer to defer decommitting pages | 64 /* Define to 1 if you prefer to defer decommitting pages |
65 (on OSes which have ability) which could be performed offline | 65 (on OSes which have ability) which could be performed offline |
66 (either by background thread or in idle time.) | 66 (either by background thread or in idle time.) |
67 */ | 67 */ |
68 #define DEFER_DECOMMIT 0 | 68 #define DEFER_DECOMMIT 1 |
69 | 69 |
70 /* Define to 1 if you have the <dlfcn.h> header file. */ | 70 /* Define to 1 if you have the <dlfcn.h> header file. */ |
71 #undef HAVE_DLFCN_H | 71 #undef HAVE_DLFCN_H |
72 | 72 |
73 /* Define to 1 if the system has the type `Elf32_Versym'. */ | 73 /* Define to 1 if the system has the type `Elf32_Versym'. */ |
74 #undef HAVE_ELF32_VERSYM | 74 #undef HAVE_ELF32_VERSYM |
75 | 75 |
76 /* Define to 1 if you have the <execinfo.h> header file. */ | 76 /* Define to 1 if you have the <execinfo.h> header file. */ |
77 #undef HAVE_EXECINFO_H | 77 #undef HAVE_EXECINFO_H |
78 | 78 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 // This must be defined before the windows.h is included. It's needed | 264 // This must be defined before the windows.h is included. It's needed |
265 // for mutex.h, to give access to the TryLock method. | 265 // for mutex.h, to give access to the TryLock method. |
266 #ifndef _WIN32_WINNT | 266 #ifndef _WIN32_WINNT |
267 # define _WIN32_WINNT 0x0400 | 267 # define _WIN32_WINNT 0x0400 |
268 #endif | 268 #endif |
269 | 269 |
270 // TODO(csilvers): include windows/port.h in every relevant source file instead? | 270 // TODO(csilvers): include windows/port.h in every relevant source file instead? |
271 #include "windows/port.h" | 271 #include "windows/port.h" |
272 | 272 |
273 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ | 273 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ |
OLD | NEW |